Commit | Line | Data |
2986a63f |
1 | |
2 | /* |
3 | * Copyright © 2001 Novell, Inc. All Rights Reserved. |
4 | * |
5 | * You may distribute under the terms of either the GNU General Public |
6 | * License or the Artistic License, as specified in the README file. |
7 | * |
8 | */ |
9 | |
10 | /* |
11 | * FILENAME : Win32ish.h |
12 | * DESCRIPTION : For Win32 type definitions like BOOL. |
13 | * Author : HYAK |
14 | * Date : January 2001. |
15 | * |
16 | */ |
17 | |
18 | |
19 | |
20 | #ifndef __Win32ish_H__ |
21 | #define __Win32ish_H__ |
22 | |
23 | |
24 | #ifndef BOOL |
25 | typedef unsigned int BOOL; |
26 | #endif |
27 | |
28 | #ifndef DWORD |
29 | typedef unsigned long DWORD; |
30 | #endif |
31 | |
32 | typedef DWORD LCID; |
33 | typedef long HRESULT; |
34 | typedef void* LPVOID; |
35 | |
36 | #ifndef TRUE |
37 | #define TRUE 1 |
38 | #endif |
39 | |
40 | #ifndef FALSE |
41 | #define FALSE 0 |
42 | #endif |
43 | |
44 | |
45 | #endif // __Win32ish_H__ |
46 | |