From: Vadim Zeitlin Date: Wed, 8 Jun 2005 13:56:45 +0000 (+0000) Subject: define MIM_STYLE and MNS_CHECKORBMP for mingw32 which doesn't have them X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ec4b5290418477d168a9af79ce3f4ec4235317dd?ds=inline define MIM_STYLE and MNS_CHECKORBMP for mingw32 which doesn't have them git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34593 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/menu.cpp b/src/msw/menu.cpp index 462bea448b..a4a350915f 100644 --- a/src/msw/menu.cpp +++ b/src/msw/menu.cpp @@ -62,6 +62,13 @@ // other standard headers #include +#ifndef MNS_CHECKORBMP + #define MNS_CHECKORBMP 0x04000000 +#endif +#ifndef MIM_STYLE + #define MIM_STYLE 0x00000010 +#endif + // ---------------------------------------------------------------------------- // global variables // ----------------------------------------------------------------------------