2e1d09ecfa57418139ea75fa71140b19da3a0884
[reactos.git] / reactos / include / wine / winspool.h
1 /* $Id $
2 *
3 * Compatibility header
4 *
5 * This header is wrapper to allow compilation of Wine DLLs under ReactOS
6 * build system. It contains definitions commonly refered to as Wineisms
7 * and definitions that are missing in w32api.
8 */
9
10 #include_next <winspool.h>
11
12 #ifndef WINE_WINSPOOL_H
13 #define WINE_WINSPOOL_H
14
15 #include <w32api.h>
16
17 #if (__W32API_MAJOR_VERSION < 2 || __W32API_MINOR_VERSION < 5)
18
19 #if _WIN32_WINNT >= 0x0500
20 BOOL WINAPI GetDefaultPrinterA(LPSTR,LPDWORD);
21 BOOL WINAPI GetDefaultPrinterW(LPWSTR,LPDWORD);
22 #endif
23
24 #endif /* __W32API_MAJOR_VERSION < 2 || __W32API_MINOR_VERSION < 5 */
25
26 #endif /* WINE_WINSPOOL_H */