Use the shell32 typical binary format for ITEMIDLISTs.
[wine] / include / windef.h
1 /*
2  * Basic types definitions
3  *
4  * Copyright 1996 Alexandre Julliard
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #ifndef _WINDEF_
22 #define _WINDEF_
23
24 #ifndef WINVER
25 #define WINVER 0x0500
26 #endif
27
28 #ifndef NO_STRICT
29 # ifndef STRICT
30 #  define STRICT
31 # endif /* STRICT */
32 #endif /* NO_STRICT */
33
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37
38 /* Calling conventions definitions */
39
40 #if defined(__i386__) && !defined(_X86_)
41 # define _X86_
42 #endif
43
44 #ifndef __stdcall
45 # ifdef __i386__
46 #  ifdef __GNUC__
47 #   define __stdcall __attribute__((__stdcall__))
48 #  elif defined(_MSC_VER)
49     /* Nothing needs to be done. __stdcall already exists */
50 #  else
51 #   error You need to define __stdcall for your compiler
52 #  endif
53 # else  /* __i386__ */
54 #  define __stdcall
55 # endif  /* __i386__ */
56 #endif /* __stdcall */
57
58 #ifndef __cdecl
59 # if defined(__i386__) && defined(__GNUC__)
60 #  define __cdecl __attribute__((__cdecl__))
61 # elif !defined(_MSC_VER)
62 #  define __cdecl
63 # endif
64 #endif /* __cdecl */
65
66 #ifdef __WINESRC__
67 #define __ONLY_IN_WINELIB(x)    do_not_use_this_in_wine
68 #else
69 #define __ONLY_IN_WINELIB(x)    x
70 #endif
71
72 #ifndef pascal
73 #define pascal      __ONLY_IN_WINELIB(__stdcall)
74 #endif
75 #ifndef _pascal
76 #define _pascal     __ONLY_IN_WINELIB(__stdcall)
77 #endif
78 #ifndef _stdcall
79 #define _stdcall    __ONLY_IN_WINELIB(__stdcall)
80 #endif
81 #ifndef _fastcall
82 #define _fastcall   __ONLY_IN_WINELIB(__stdcall)
83 #endif
84 #ifndef __fastcall
85 #define __fastcall  __ONLY_IN_WINELIB(__stdcall)
86 #endif
87 #ifndef __export
88 #define __export    __ONLY_IN_WINELIB(__stdcall)
89 #endif
90 #ifndef cdecl
91 #define cdecl       __ONLY_IN_WINELIB(__cdecl)
92 #endif
93 #ifndef _cdecl
94 #define _cdecl      __ONLY_IN_WINELIB(__cdecl)
95 #endif
96
97 #ifndef near
98 #define near        __ONLY_IN_WINELIB()
99 #endif
100 #ifndef far
101 #define far         __ONLY_IN_WINELIB()
102 #endif
103 #ifndef _near
104 #define _near       __ONLY_IN_WINELIB()
105 #endif
106 #ifndef _far
107 #define _far        __ONLY_IN_WINELIB()
108 #endif
109 #ifndef NEAR
110 #define NEAR        __ONLY_IN_WINELIB()
111 #endif
112 #ifndef FAR
113 #define FAR         __ONLY_IN_WINELIB()
114 #endif
115
116 #ifndef _MSC_VER
117 # ifndef _declspec
118 #  define _declspec(x)    __ONLY_IN_WINELIB()
119 # endif
120 # ifndef __declspec
121 #  define __declspec(x)   __ONLY_IN_WINELIB()
122 # endif
123 #endif
124
125 #define CALLBACK    __stdcall
126 #define WINAPI      __stdcall
127 #define APIPRIVATE  __stdcall
128 #define PASCAL      __stdcall
129 #define CDECL       __cdecl
130 #define _CDECL      __cdecl
131 #define WINAPIV     __cdecl
132 #define APIENTRY    WINAPI
133 #define CONST       const
134
135 /* Misc. constants. */
136
137 #undef NULL
138 #ifdef __cplusplus
139 #define NULL  0
140 #else
141 #define NULL  ((void*)0)
142 #endif
143
144 #ifdef FALSE
145 #undef FALSE
146 #endif
147 #define FALSE 0
148
149 #ifdef TRUE
150 #undef TRUE
151 #endif
152 #define TRUE  1
153
154 #ifndef IN
155 #define IN
156 #endif
157
158 #ifndef OUT
159 #define OUT
160 #endif
161
162 #ifndef OPTIONAL
163 #define OPTIONAL
164 #endif
165
166 /* Standard data types */
167
168 typedef void                                   *LPVOID;
169 typedef const void                             *LPCVOID;
170 typedef int             BOOL,       *PBOOL,    *LPBOOL;
171 typedef unsigned char   BYTE,       *PBYTE,    *LPBYTE;
172 typedef unsigned char   UCHAR,      *PUCHAR;
173 typedef unsigned short  WORD,       *PWORD,    *LPWORD;
174 typedef unsigned short  USHORT,     *PUSHORT;
175 typedef int             INT,        *PINT,     *LPINT;
176 typedef unsigned int    UINT,       *PUINT;
177 typedef long                                   *LPLONG;
178 typedef unsigned long   DWORD,      *PDWORD,   *LPDWORD;
179 typedef unsigned long   ULONG,      *PULONG;
180 typedef float           FLOAT,      *PFLOAT;
181 typedef char                        *PSZ;
182
183 /* Macros to map Winelib names to the correct implementation name */
184 /* Note that Winelib is purely Win32.                             */
185
186 #ifdef __WINESRC__
187 # define WINELIB_NAME_AW(func) \
188     func##_must_be_suffixed_with_W_or_A_in_this_context \
189     func##_must_be_suffixed_with_W_or_A_in_this_context
190 #else  /* __WINESRC__ */
191 # ifdef UNICODE
192 #  define WINELIB_NAME_AW(func) func##W
193 # else
194 #  define WINELIB_NAME_AW(func) func##A
195 # endif  /* UNICODE */
196 #endif  /* __WINESRC__ */
197
198 #ifdef __WINESRC__
199 # define DECL_WINELIB_TYPE_AW(type)  /* nothing */
200 #else   /* __WINESRC__ */
201 # define DECL_WINELIB_TYPE_AW(type)  typedef WINELIB_NAME_AW(type) type;
202 #endif  /* __WINESRC__ */
203
204 #include <winnt.h>
205
206 /* Polymorphic types */
207
208 typedef UINT_PTR        WPARAM;
209 typedef LONG_PTR        LPARAM;
210 typedef LONG_PTR        LRESULT;
211
212 /* Integer types */
213
214 typedef WORD            ATOM;
215 typedef DWORD           COLORREF, *LPCOLORREF;
216
217
218 /* Handle types */
219
220 typedef int HFILE;
221 DECLARE_HANDLE(HACCEL);
222 DECLARE_HANDLE(HBITMAP);
223 DECLARE_HANDLE(HBRUSH);
224 DECLARE_HANDLE(HCOLORSPACE);
225 DECLARE_HANDLE(HDC);
226 DECLARE_HANDLE(HDESK);
227 DECLARE_HANDLE(HENHMETAFILE);
228 DECLARE_HANDLE(HFONT);
229 DECLARE_HANDLE(HGLRC);
230 DECLARE_HANDLE(HHOOK);
231 DECLARE_HANDLE(HICON);
232 DECLARE_HANDLE(HINSTANCE);
233 DECLARE_HANDLE(HKEY);
234 typedef HKEY *PHKEY;
235 DECLARE_HANDLE(HKL);
236 DECLARE_HANDLE(HMENU);
237 DECLARE_HANDLE(HMETAFILE);
238 DECLARE_HANDLE(HMONITOR);
239 DECLARE_HANDLE(HPALETTE);
240 DECLARE_HANDLE(HPEN);
241 DECLARE_HANDLE(HRGN);
242 DECLARE_HANDLE(HRSRC);
243 DECLARE_HANDLE(HTASK);
244 DECLARE_HANDLE(HWINEVENTHOOK);
245 DECLARE_HANDLE(HWINSTA);
246 DECLARE_HANDLE(HWND);
247
248 /* Handle types that must remain interchangeable even with strict on */
249
250 typedef HINSTANCE HMODULE;
251 typedef HANDLE HGDIOBJ;
252 typedef HANDLE HGLOBAL;
253 typedef HANDLE HLOCAL;
254 typedef HANDLE GLOBALHANDLE;
255 typedef HANDLE LOCALHANDLE;
256 typedef HICON HCURSOR;
257
258 /* Callback function pointers types */
259
260 typedef INT     (CALLBACK *FARPROC)();
261 typedef INT     (CALLBACK *PROC)();
262
263
264 /* Macros to split words and longs. */
265
266 #define LOBYTE(w)              ((BYTE)(WORD)(w))
267 #define HIBYTE(w)              ((BYTE)((WORD)(w) >> 8))
268
269 #define LOWORD(l)              ((WORD)(DWORD)(l))
270 #define HIWORD(l)              ((WORD)((DWORD)(l) >> 16))
271
272 #define MAKEWORD(low,high)     ((WORD)(((BYTE)(low)) | ((WORD)((BYTE)(high))) << 8))
273 #define MAKELONG(low,high)     ((LONG)(((WORD)(low)) | (((DWORD)((WORD)(high))) << 16)))
274
275 /* min and max macros */
276 #ifndef NOMINMAX
277 #ifndef max
278 #define max(a,b)   (((a) > (b)) ? (a) : (b))
279 #endif
280 #ifndef min
281 #define min(a,b)   (((a) < (b)) ? (a) : (b))
282 #endif
283 #endif  /* NOMINMAX */
284
285 #ifdef MAX_PATH /* Work-around for Mingw */ 
286 #undef MAX_PATH
287 #endif /* MAX_PATH */
288
289 #define MAX_PATH        260
290 #define HFILE_ERROR     ((HFILE)-1)
291
292 /* The SIZE structure */
293 typedef struct tagSIZE
294 {
295     LONG cx;
296     LONG cy;
297 } SIZE, *PSIZE, *LPSIZE;
298
299 typedef SIZE SIZEL, *PSIZEL, *LPSIZEL;
300
301 /* The POINT structure */
302 typedef struct tagPOINT
303 {
304     LONG  x;
305     LONG  y;
306 } POINT, *PPOINT, *LPPOINT;
307
308 typedef struct _POINTL
309 {
310     LONG x;
311     LONG y;
312 } POINTL, *PPOINTL;
313
314 /* The POINTS structure */
315
316 typedef struct tagPOINTS
317 {
318     SHORT x;
319     SHORT y;
320 } POINTS, *PPOINTS, *LPPOINTS;
321
322 /* The RECT structure */
323 typedef struct tagRECT
324 {
325     LONG left;
326     LONG top;
327     LONG right;
328     LONG bottom;
329 } RECT, *PRECT, *LPRECT;
330 typedef const RECT *LPCRECT;
331
332 typedef struct _RECTL
333 {
334     LONG left;
335     LONG top;
336     LONG right;
337     LONG bottom;
338 } RECTL, *PRECTL, *LPRECTL;
339
340 typedef const RECTL *LPCRECTL;
341
342 #ifdef __cplusplus
343 }
344 #endif
345
346 #endif /* _WINDEF_ */