//
//
-#if defined( __GNUWIN32__ ) || defined(__MWERKS__)
+#if (defined( __GNUWIN32__ ) && !defined(__TWIN32__)) || defined(__MWERKS__)
#include <wx/msw/gnuwin32/winresrc.h>
#else
#include <windows.h>
// Dummy Dialog for all wxCAPTION Dialog boxes
//
+wxResizeableDialog DIALOG DISCARDABLE 34, 22, 144, 75
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
+CAPTION ""
+BEGIN
+ LTEXT "", -1,-2,-2,1,1 //necessary for __WATCOMC__
+END
+
wxCaptionDialog DIALOG DISCARDABLE 34, 22, 144, 75
STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
CAPTION "Dummy dialog"
// Bitmaps
//
+#ifdef __SALFORDC__
+wxDISABLE_BUTTON_BITMAP BITMAP WXINCDIR"wx/msw/disable.bmp"
+#else
wxDISABLE_BUTTON_BITMAP BITMAP "wx/msw/disable.bmp"
-
+#endif