2 * Basic types definitions
4 * Copyright 1996 Alexandre Julliard
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.
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.
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
32 #endif /* NO_STRICT */
38 /* Calling conventions definitions */
40 #if defined(__i386__) && !defined(_X86_)
47 # define __stdcall __attribute__((__stdcall__))
48 # elif defined(_MSC_VER)
49 /* Nothing needs to be done. __stdcall already exists */
51 # error You need to define __stdcall for your compiler
55 # endif /* __i386__ */
56 #endif /* __stdcall */
59 # if defined(__i386__) && defined(__GNUC__)
60 # define __cdecl __attribute__((__cdecl__))
61 # elif !defined(_MSC_VER)
67 #define __ONLY_IN_WINELIB(x) do_not_use_this_in_wine
69 #define __ONLY_IN_WINELIB(x) x
73 #define pascal __ONLY_IN_WINELIB(__stdcall)
76 #define _pascal __ONLY_IN_WINELIB(__stdcall)
79 #define _stdcall __ONLY_IN_WINELIB(__stdcall)
82 #define _fastcall __ONLY_IN_WINELIB(__stdcall)
85 #define __fastcall __ONLY_IN_WINELIB(__stdcall)
88 #define __export __ONLY_IN_WINELIB(__stdcall)
91 #define cdecl __ONLY_IN_WINELIB(__cdecl)
94 #define _cdecl __ONLY_IN_WINELIB(__cdecl)
98 #define near __ONLY_IN_WINELIB()
101 #define far __ONLY_IN_WINELIB()
104 #define _near __ONLY_IN_WINELIB()
107 #define _far __ONLY_IN_WINELIB()
110 #define NEAR __ONLY_IN_WINELIB()
113 #define FAR __ONLY_IN_WINELIB()
118 # define _declspec(x) __ONLY_IN_WINELIB()
121 # define __declspec(x) __ONLY_IN_WINELIB()
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
135 /* Misc. constants. */
141 #define NULL ((void*)0)
166 /* Standard data types */
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;
183 /* Macros to map Winelib names to the correct implementation name */
184 /* Note that Winelib is purely Win32. */
187 #define WINE_NO_UNICODE_MACROS
190 #ifdef WINE_NO_UNICODE_MACROS
191 # define WINELIB_NAME_AW(func) \
192 func##_must_be_suffixed_with_W_or_A_in_this_context \
193 func##_must_be_suffixed_with_W_or_A_in_this_context
194 #else /* WINE_NO_UNICODE_MACROS */
196 # define WINELIB_NAME_AW(func) func##W
198 # define WINELIB_NAME_AW(func) func##A
200 #endif /* WINE_NO_UNICODE_MACROS */
202 #ifdef WINE_NO_UNICODE_MACROS
203 # define DECL_WINELIB_TYPE_AW(type) /* nothing */
205 # define DECL_WINELIB_TYPE_AW(type) typedef WINELIB_NAME_AW(type) type;
210 /* Polymorphic types */
212 typedef UINT_PTR WPARAM;
213 typedef LONG_PTR LPARAM;
214 typedef LONG_PTR LRESULT;
219 typedef DWORD COLORREF, *LPCOLORREF;
225 DECLARE_HANDLE(HACCEL);
226 DECLARE_HANDLE(HBITMAP);
227 DECLARE_HANDLE(HBRUSH);
228 DECLARE_HANDLE(HCOLORSPACE);
230 DECLARE_HANDLE(HDESK);
231 DECLARE_HANDLE(HENHMETAFILE);
232 DECLARE_HANDLE(HFONT);
233 DECLARE_HANDLE(HGLRC);
234 DECLARE_HANDLE(HHOOK);
235 DECLARE_HANDLE(HICON);
236 DECLARE_HANDLE(HINSTANCE);
237 DECLARE_HANDLE(HKEY);
240 DECLARE_HANDLE(HMENU);
241 DECLARE_HANDLE(HMETAFILE);
242 DECLARE_HANDLE(HMONITOR);
243 DECLARE_HANDLE(HPALETTE);
244 DECLARE_HANDLE(HPEN);
245 DECLARE_HANDLE(HRGN);
246 DECLARE_HANDLE(HRSRC);
247 DECLARE_HANDLE(HTASK);
248 DECLARE_HANDLE(HWINEVENTHOOK);
249 DECLARE_HANDLE(HWINSTA);
250 DECLARE_HANDLE(HWND);
252 /* Handle types that must remain interchangeable even with strict on */
254 typedef HINSTANCE HMODULE;
255 typedef HANDLE HGDIOBJ;
256 typedef HANDLE HGLOBAL;
257 typedef HANDLE HLOCAL;
258 typedef HANDLE GLOBALHANDLE;
259 typedef HANDLE LOCALHANDLE;
260 typedef HICON HCURSOR;
262 /* Callback function pointers types */
264 typedef INT (CALLBACK *FARPROC)();
265 typedef INT (CALLBACK *PROC)();
268 /* Macros to split words and longs. */
270 #define LOBYTE(w) ((BYTE)(WORD)(w))
271 #define HIBYTE(w) ((BYTE)((WORD)(w) >> 8))
273 #define LOWORD(l) ((WORD)(DWORD)(l))
274 #define HIWORD(l) ((WORD)((DWORD)(l) >> 16))
276 #define MAKEWORD(low,high) ((WORD)(((BYTE)(low)) | ((WORD)((BYTE)(high))) << 8))
277 #define MAKELONG(low,high) ((LONG)(((WORD)(low)) | (((DWORD)((WORD)(high))) << 16)))
279 /* min and max macros */
282 #define max(a,b) (((a) > (b)) ? (a) : (b))
285 #define min(a,b) (((a) < (b)) ? (a) : (b))
287 #endif /* NOMINMAX */
289 #ifdef MAX_PATH /* Work-around for Mingw */
291 #endif /* MAX_PATH */
294 #define HFILE_ERROR ((HFILE)-1)
296 /* The SIZE structure */
297 typedef struct tagSIZE
301 } SIZE, *PSIZE, *LPSIZE;
303 typedef SIZE SIZEL, *PSIZEL, *LPSIZEL;
305 /* The POINT structure */
306 typedef struct tagPOINT
310 } POINT, *PPOINT, *LPPOINT;
312 typedef struct _POINTL
318 /* The POINTS structure */
320 typedef struct tagPOINTS
322 #ifdef WORDS_BIGENDIAN
329 } POINTS, *PPOINTS, *LPPOINTS;
331 /* The RECT structure */
332 typedef struct tagRECT
338 } RECT, *PRECT, *LPRECT;
339 typedef const RECT *LPCRECT;
341 typedef struct _RECTL
347 } RECTL, *PRECTL, *LPRECTL;
349 typedef const RECTL *LPCRECTL;
355 #endif /* _WINDEF_ */