[wine/commctrl.h]
[reactos.git] / reactos / include / reactos / wine / commctrl.h
1
2 #ifndef _INC_COMMCTRL_WINE
3 #define _INC_COMMCTRL_WINE
4
5 #define DPA_GetPtr DPA_GetPtr_wine_hack
6 #define FlatSB_SetScrollProp FlatSB_SetScrollProp_wine_hack
7
8 #if (_WIN32_IE < 0x501)
9 #undef _WIN32_IE
10 #define _WIN32_IE 0x0501
11 #endif
12
13 #include <psdk/commctrl.h>
14
15 #undef DPA_GetPtr
16 LPVOID WINAPI DPA_GetPtr(HDPA, INT);
17
18 #undef FlatSB_SetScrollProp
19 BOOL WINAPI FlatSB_SetScrollProp(HWND, UINT, INT, BOOL);
20
21 #define DRAGLISTMSGSTRINGA "commctrl_DragListMsg"
22 #if defined(__GNUC__)
23 # define DRAGLISTMSGSTRINGW (const WCHAR []){ 'c','o','m','m','c','t','r','l', \
24 '_','D','r','a','g','L','i','s','t','M','s','g',0 }
25 #elif defined(_MSC_VER)
26 # define DRAGLISTMSGSTRINGW L"commctrl_DragListMsg"
27 #else
28 static const WCHAR DRAGLISTMSGSTRINGW[] = { 'c','o','m','m','c','t','r','l',
29 '_','D','r','a','g','L','i','s','t','M','s','g',0 };
30 #endif
31
32 #define FLATSB_CLASSA "flatsb_class32"
33 #if defined(__GNUC__)
34 # define FLATSB_CLASSW (const WCHAR []){ 'f','l','a','t','s','b','_', \
35 'c','l','a','s','s','3','2',0 }
36 #elif defined(_MSC_VER)
37 # define FLATSB_CLASSW L"flatsb_class32"
38 #else
39 static const WCHAR FLATSB_CLASSW[] = { 'f','l','a','t','s','b','_',
40 'c','l','a','s','s','3','2',0 };
41 #endif
42
43 typedef TBSAVEPARAMSW *LPTBSAVEPARAMSW;
44
45 typedef LVFINDINFOA *LPLVFINDINFOA;
46 typedef LVFINDINFOW *LPLVFINDINFOW;
47
48 #define SB_SETBORDERS (WM_USER+5)
49 #define TBSTYLE_EX_UNDOC1 0x00000004 /* similar to TBSTYLE_WRAPABLE */
50
51 /* these are undocumented and the names are guesses */
52 typedef struct
53 {
54 NMHDR hdr;
55 HWND hwndDialog;
56 } NMTBINITCUSTOMIZE;
57
58 typedef struct
59 {
60 NMHDR hdr;
61 INT idNew;
62 INT iDirection; /* left is -1, right is 1 */
63 DWORD dwReason; /* HICF_* */
64 } NMTBWRAPHOTITEM;
65
66 #define LPNMLVDISPINFO WINELIB_NAME_AW(LPNMLVDISPINFO)
67
68 /* undocumented messages in Toolbar */
69 #define TB_UNKWN45D (WM_USER+93)
70 #define TB_UNKWN464 (WM_USER+100)
71
72 #endif /* _INC_COMMCTRL_WINE */