X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fcd0c90f758ec71f89fda08e55ed325d7d861b12..b92203a8be20debe7615492c26969d17bcd7fa8d:/include/wx/msw/missing.h diff --git a/include/wx/msw/missing.h b/include/wx/msw/missing.h index 83129ec448..5778f1adf4 100644 --- a/include/wx/msw/missing.h +++ b/include/wx/msw/missing.h @@ -365,6 +365,34 @@ typedef struct _paraformat2 { #endif // wxUSE_RICHEDIT +// ---------------------------------------------------------------------------- +// ToolBar +// ---------------------------------------------------------------------------- + +#if wxUSE_TOOLBAR + +#if !defined(TBIF_SIZE) + +#define TBIF_SIZE 64 +#define TB_SETBUTTONINFO (WM_USER+66) + +typedef struct { + UINT cbSize; + DWORD dwMask; + int idCommand; + int iImage; + BYTE fsState; + BYTE fsStyle; + WORD cx; + DWORD lParam; + LPTSTR pszText; + int cchText; +} TBBUTTONINFO, *LPTBBUTTONINFO; + +#endif // !defined(TBIF_SIZE) + +#endif // wxUSE_TOOLBAR + // ---------------------------------------------------------------------------- // Misc stuff // ----------------------------------------------------------------------------