X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7a3ac804897d5cffdf2e79556a510d31898cdf0d..36e2955a64a41e743fbd151c2466450ef99b323b:/src/msw/notebook.cpp?ds=inline diff --git a/src/msw/notebook.cpp b/src/msw/notebook.cpp index fe431a1234..67cc03440b 100644 --- a/src/msw/notebook.cpp +++ b/src/msw/notebook.cpp @@ -62,6 +62,23 @@ // hide the ugly cast #define m_hwnd (HWND)GetHWND() +// ---------------------------------------------------------------------------- +// constants +// ---------------------------------------------------------------------------- + +// This is a work-around for missing defines in gcc-2.95 headers +#ifndef TCS_RIGHT + #define TCS_RIGHT 0x0002 +#endif + +#ifndef TCS_VERTICAL + #define TCS_VERTICAL 0x0080 +#endif + +#ifndef TCS_BOTTOM + #define TCS_BOTTOM TCS_RIGHT +#endif + // ---------------------------------------------------------------------------- // event table // ----------------------------------------------------------------------------