- Fix some formatting.
[reactos.git] / reactos / include / wine / 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 #include_next "windef.h"
22
23 #ifndef __WINE_WINDEF_H
24 #define __WINE_WINDEF_H
25
26 /* Macros to map Winelib names to the correct implementation name */
27
28 #if defined(__WINESRC__) || defined(__REACTOS__)
29 # define WINELIB_NAME_AW(func) \
30 func##_must_be_suffixed_with_W_or_A_in_this_context \
31 func##_must_be_suffixed_with_W_or_A_in_this_context
32 #else /* __WINESRC__ || __REACTOS__*/
33 # ifdef UNICODE
34 # define WINELIB_NAME_AW(func) func##W
35 # else
36 # define WINELIB_NAME_AW(func) func##A
37 # endif /* UNICODE */
38 #endif /* __WINESRC__ */
39
40 #if defined(__WINESRC__) || defined(__REACTOS__)
41 # define DECL_WINELIB_TYPE_AW(type) /* nothing */
42 #else /* __WINESRC__ */
43 # define DECL_WINELIB_TYPE_AW(type) typedef WINELIB_NAME_AW(type) type;
44 #endif /* __WINESRC__ */
45
46 #endif /* __WINE_WINDEF_H */