X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1c7ae45ab599842a9ca4fa18275a5134707e301b..e4c903b2ea42fe104ef50d0ea6028f14d8309dfa:/include/wx/msw/missing.h diff --git a/include/wx/msw/missing.h b/include/wx/msw/missing.h index 1bfea59843..f4961c2562 100644 --- a/include/wx/msw/missing.h +++ b/include/wx/msw/missing.h @@ -29,19 +29,26 @@ #define WM_CONTEXTMENU 0x007B #endif -// Needed by toplevel.cpp +#ifndef WM_CHANGEUISTATE + #define WM_CHANGEUISTATE 0x0127 +#endif + #ifndef WM_UPDATEUISTATE #define WM_UPDATEUISTATE 0x0128 #endif -#ifndef WM_CHANGEUISTATE - #define WM_CHANGEUISTATE 0x0127 +#ifndef WM_QUERYUISTATE + #define WM_QUERYUISTATE 0x0129 #endif #ifndef WM_PRINTCLIENT #define WM_PRINTCLIENT 0x318 #endif +#ifndef DT_HIDEPREFIX + #define DT_HIDEPREFIX 0x00100000 +#endif + // Needed by toplevel.cpp #ifndef UIS_SET #define UIS_SET 1 @@ -210,6 +217,28 @@ typedef struct wxtagNMLVCUSTOMDRAW_ { #endif // defined __VISUALC__ && __VISUALC__ <= 1100 +// ---------------------------------------------------------------------------- +// menu stuff +// ---------------------------------------------------------------------------- + +#ifndef MIIM_BITMAP + #define MIIM_STRING 0x00000040 + #define MIIM_BITMAP 0x00000080 + #define MIIM_FTYPE 0x00000100 + #define HBMMENU_CALLBACK ((HBITMAP) -1) + + typedef struct tagMENUINFO + { + DWORD cbSize; + DWORD fMask; + DWORD dwStyle; + UINT cyMax; + HBRUSH hbrBack; + DWORD dwContextHelpID; + DWORD dwMenuData; + } MENUINFO, FAR *LPMENUINFO; +#endif // MIIM_BITMAP &c + // ---------------------------------------------------------------------------- // definitions related to ListView and Header common controls, needed by // msw/listctrl.cpp and msw/headerctrl.cpp