+#define wxUSE_IPC 1
+ // 0 for no interprocess comms
+#define wxUSE_HELP 1
+ // 0 for no help facility
+#define wxUSE_MS_HTML_HELP 0
+ // 0 for no MS HTML Help
+#define wxUSE_RESOURCES 1
+ // 0 for no wxGetResource/wxWriteResource
+#define wxUSE_CONSTRAINTS 1
+ // 0 for no window layout constraint system
+
+#define wxUSE_CLIPBOARD 1
+ // 0 for no clipboard functions
+
+#define wxUSE_SPLINES 1
+ // 0 for no splines
+
+#define wxUSE_DRAG_AND_DROP 1
+ // 0 for no drag and drop
+
+#define wxUSE_XPM_IN_MSW 1
+ // 0 for no XPM support in wxBitmap.
+ // Default is 1, as XPM is now fully
+ // supported this makes easier the issue
+ // of portable icons and bitmaps.
+#define wxUSE_IMAGE_LOADING_IN_MSW 1
+ // Use dynamic DIB loading/saving code in utils/dib under MSW.
+#define wxUSE_RESOURCE_LOADING_IN_MSW 1
+ // Use dynamic icon/cursor loading/saving code
+ // under MSW.
+#define wxUSE_WX_RESOURCES 1
+ // Use .wxr resource mechanism (requires PrologIO library)
+
+// ----------------------------------------------------------------------------
+// Postscript support settings
+// ----------------------------------------------------------------------------
+
+#define wxUSE_POSTSCRIPT 0
+ // 0 for no PostScript device context
+#define wxUSE_AFM_FOR_POSTSCRIPT 0
+ // 1 to use font metric files in GetTextExtent
+
+#define wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW 1
+ // Set to 0 to disable PostScript print/preview architecture code
+ // under Windows (just use Windows printing).
+
+// ----------------------------------------------------------------------------
+// database classes
+// ----------------------------------------------------------------------------
+
+#define wxUSE_ODBC 0
+ // Define 1 to use ODBC classes
+
+#define wxODBC_FWD_ONLY_CURSORS 1
+ // For backward compatibility reasons, this parameter now only
+ // controls the default scrolling method used by cursors. This
+ // default behavior can be overriden by setting the second param
+ // of wxDB::GetDbConnection() to indicate whether the connection
+ // (and any wxTable()s that use the connection) should support
+ // forward only scrolling of cursors, or both forward and backward
+ // Support for backward scrolling cursors is dependent on the
+ // data source as well as the ODBC driver being used.
+
+#define wxODBC_BACKWARD_COMPATABILITY 0
+ // Default is 0. Set to 1 to use the deprecated classes, enum
+ // types, function, member variables. With a setting of 1, full
+ // backward compatability with the 2.0.x release is possible.
+ // It is STRONGLY recommended that this be set to 0, as
+ // future development will be done only on the non-deprecated
+ // functions/classes/member variables/etc.
+
+// ----------------------------------------------------------------------------
+// other compiler (mis)features
+// ----------------------------------------------------------------------------
+
+// Set this to 0 if your compiler can't cope with omission of prototype
+// parameters.
+//
+// Default is 1.
+//
+// Recommended setting: 1 (should never need to set this to 0)
+#define REMOVE_UNUSED_ARG 1
+
+// VC++ 4.2 and above allows <iostream> and <iostream.h> but you can't mix
+// them. Set to 1 for <iostream.h>, 0 for <iostream>
+//
+// Default is 1.
+//
+// Recommended setting: whatever your compiler likes more
+#define wxUSE_IOSTREAMH 1
+
+// ----------------------------------------------------------------------------
+// image format support
+// ----------------------------------------------------------------------------
+
+#define wxUSE_ZLIB 1
+ // Use zlib for compression in streams and PNG code
+#define wxUSE_LIBPNG 1
+ // Use PNG bitmap/image code
+#define wxUSE_LIBJPEG 1
+ // Use JPEG bitmap/image code
+#define wxUSE_LIBTIFF 1
+ // Use TIFF bitmap/image code
+#define wxUSE_GIF 1
+ // Use GIF bitmap/image code
+#define wxUSE_PNM 1
+ // Use PNM bitmap/image code
+#define wxUSE_PCX 1
+ // Use PCX bitmap/image code
+
+// ----------------------------------------------------------------------------
+// Windows-only settings
+// ----------------------------------------------------------------------------
+
+// Make settings compatible with MFC
+#define wxUSE_MFC 0
+
+// required for drag-and-drop, clipboard, OLE Automation