From: Włodzimierz Skiba Date: Tue, 7 Mar 2006 19:53:43 +0000 (+0000) Subject: DMC build fix. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/4aa14001d20bf951ab4cc0adea401dd8bcf75e43 DMC build fix. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37867 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/msw/missing.h b/include/wx/msw/missing.h index ea8cd99c93..7c88dcbe0d 100644 --- a/include/wx/msw/missing.h +++ b/include/wx/msw/missing.h @@ -189,10 +189,22 @@ #ifdef __DMC__ -#ifdef __DMC__ - #ifndef _TrackMouseEvent - #define _TrackMouseEvent TrackMouseEvent - #endif +typedef struct _OSVERSIONINFOEX { + DWORD dwOSVersionInfoSize; + DWORD dwMajorVersion; + DWORD dwMinorVersion; + DWORD dwBuildNumber; + DWORD dwPlatformId; + TCHAR szCSDVersion[ 128 ]; + WORD wServicePackMajor; + WORD wServicePackMinor; + WORD wSuiteMask; + BYTE wProductType; + BYTE wReserved; +} OSVERSIONINFOEX; + +#ifndef _TrackMouseEvent + #define _TrackMouseEvent TrackMouseEvent #endif #ifndef LVM_SETEXTENDEDLISTVIEWSTYLE @@ -225,6 +237,10 @@ #define LVSICF_NOSCROLL 0x0002 #endif +#ifndef CP_SYMBOL + #define CP_SYMBOL 42 +#endif + // ---------------------------------------------------------------------------- // Tree control // ----------------------------------------------------------------------------