From: Włodzimierz Skiba Date: Tue, 30 May 2006 12:41:41 +0000 (+0000) Subject: Missing items for default DMC distribution. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a6f7daee0b2ede3701c8a5f6de159e4e9f63ffd8 Missing items for default DMC distribution. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39474 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/msw/missing.h b/include/wx/msw/missing.h index dfbee6d8d8..dae3338a0f 100644 --- a/include/wx/msw/missing.h +++ b/include/wx/msw/missing.h @@ -215,6 +215,10 @@ typedef struct _OSVERSIONINFOEX { #define LVM_SETEXTENDEDLISTVIEWSTYLE (0x1000 + 54) #endif +#ifndef LVM_GETSUBITEMRECT + #define LVM_GETSUBITEMRECT (0x1000 + 56) +#endif + #ifndef LVCF_IMAGE #define LVCF_IMAGE 0x0010 #endif @@ -232,6 +236,10 @@ typedef struct _OSVERSIONINFOEX { #define ListView_GetHeader(w) (HWND)SendMessage((w),LVM_GETHEADER,0,0) #endif +#ifndef ListView_GetSubItemRect + #define ListView_GetSubItemRect(w, i, s, c, p) (HWND)SendMessage(w,LVM_GETSUBITEMRECT,i, ((p) ? ((((LPRECT)(p))->top = s), (((LPRECT)(p))->left = c), (LPARAM)(p)) : (LPARAM)(LPRECT)NULL)) +#endif + #ifndef LVM_GETHEADER #define LVM_GETHEADER (LVM_FIRST+31) #endif