X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4c87eb44c25c2c4d466e129dbd5ed435d583b1bc..1fdf858b87878bb6c52c06547a199ce9d9ab2b87:/include/wx/msw/missing.h diff --git a/include/wx/msw/missing.h b/include/wx/msw/missing.h index 4a094e59de..489140ee53 100644 --- a/include/wx/msw/missing.h +++ b/include/wx/msw/missing.h @@ -43,6 +43,10 @@ #define LVCFMT_JUSTIFYMASK 0x0003 #endif +#ifndef LVSICF_NOSCROLL + #define LVSICF_NOSCROLL 0x0002 +#endif + // mingw32/cygwin don't have declarations for comctl32.dll 4.70+ stuff #ifndef NM_CACHEHINT typedef struct tagNMLVCACHEHINT @@ -159,8 +163,9 @@ typedef struct tagNMLVDISPINFOW { #endif #endif -#if ((defined(__WATCOMC__) && __WATCOMC__ >= 1200) || defined(__GNUWIN32__)) && !defined(HDN_GETDISPINFOW) +#if ((defined(__WATCOMC__) && __WATCOMC__ >= 1200) || defined(__GNUWIN32__) || defined(__DIGITALMARS__) || defined (__BORLANDC__)) && !defined(HDN_GETDISPINFOW) #define HDN_GETDISPINFOW (HDN_FIRST-29) +#if !wxCHECK_W32API_VERSION(2, 2) typedef struct { NMHDR hdr; int iItem; @@ -171,6 +176,7 @@ typedef struct { LPARAM lParam; } NMHDDISPINFOW, *LPNMHDDISPINFOW; #endif +#endif // ---------------------------------------------------------------------------- @@ -243,5 +249,13 @@ struct HH_AKLINK #define QS_ALLPOSTMESSAGE 0x0100 #endif +#ifndef WS_EX_CLIENTEDGE + #define WS_EX_CLIENTEDGE 0x00000200L +#endif + +#ifndef ENDSESSION_LOGOFF + #define ENDSESSION_LOGOFF 0x80000000 +#endif + #endif // _WX_MISSING_H_