[USB]
[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 #ifdef __cplusplus
16 extern "C" {
17 #endif
18
19 #undef DPA_GetPtr
20 LPVOID WINAPI DPA_GetPtr(HDPA, INT);
21
22 #undef FlatSB_SetScrollProp
23 BOOL WINAPI FlatSB_SetScrollProp(HWND, UINT, INT, BOOL);
24
25 #define DRAGLISTMSGSTRINGA "commctrl_DragListMsg"
26 #if defined(__GNUC__)
27 # define DRAGLISTMSGSTRINGW (const WCHAR []){ 'c','o','m','m','c','t','r','l', \
28 '_','D','r','a','g','L','i','s','t','M','s','g',0 }
29 #elif defined(_MSC_VER)
30 # define DRAGLISTMSGSTRINGW L"commctrl_DragListMsg"
31 #else
32 static const WCHAR DRAGLISTMSGSTRINGW[] = { 'c','o','m','m','c','t','r','l',
33 '_','D','r','a','g','L','i','s','t','M','s','g',0 };
34 #endif
35
36 #define ListView_InsertItemA(hwnd,pitem) \
37 (INT)SNDMSGA((hwnd),LVM_INSERTITEMA,0,(LPARAM)(const LVITEMA *)(pitem))
38 #define ListView_InsertItemW(hwnd,pitem) \
39 (INT)SNDMSGW((hwnd),LVM_INSERTITEMW,0,(LPARAM)(const LVITEMW *)(pitem))
40
41 #ifdef __cplusplus
42 #define SNDMSGA ::SendMessageA
43 #define SNDMSGW ::SendMessageW
44 #else
45 #define SNDMSGA SendMessageA
46 #define SNDMSGW SendMessageW
47 #endif
48
49 #define FLATSB_CLASSA "flatsb_class32"
50 #if defined(__GNUC__)
51 # define FLATSB_CLASSW (const WCHAR []){ 'f','l','a','t','s','b','_', \
52 'c','l','a','s','s','3','2',0 }
53 #elif defined(_MSC_VER)
54 # define FLATSB_CLASSW L"flatsb_class32"
55 #else
56 static const WCHAR FLATSB_CLASSW[] = { 'f','l','a','t','s','b','_',
57 'c','l','a','s','s','3','2',0 };
58 #endif
59
60 typedef TBSAVEPARAMSW *LPTBSAVEPARAMSW;
61
62 typedef LVFINDINFOA *LPLVFINDINFOA;
63 typedef LVFINDINFOW *LPLVFINDINFOW;
64
65 #define SB_SETBORDERS (WM_USER+5)
66 #define TBSTYLE_EX_UNDOC1 0x00000004 /* similar to TBSTYLE_WRAPABLE */
67
68 /* these are undocumented and the names are guesses */
69 typedef struct
70 {
71 NMHDR hdr;
72 HWND hwndDialog;
73 } NMTBINITCUSTOMIZE;
74
75 typedef struct
76 {
77 NMHDR hdr;
78 INT idNew;
79 INT iDirection; /* left is -1, right is 1 */
80 DWORD dwReason; /* HICF_* */
81 } NMTBWRAPHOTITEM;
82
83 #define LPNMLVDISPINFO WINELIB_NAME_AW(LPNMLVDISPINFO)
84
85 /* undocumented messages in Toolbar */
86 #define TB_UNKWN45D (WM_USER+93)
87 #define TB_UNKWN464 (WM_USER+100)
88
89 #ifdef __cplusplus
90 }
91 #endif
92
93 #endif /* _INC_COMMCTRL_WINE */