]> git.saurik.com Git - wxWidgets.git/blame - utils/Install/incace/declare.h
added missing wxSTDs
[wxWidgets.git] / utils / Install / incace / declare.h
CommitLineData
f6bcfd97
BP
1/******************************************************/
2/* */
3/* declare.h: declaration-symbols (UCHAR, ULONG, ...) */
4/* */
5/******************************************************/
6
7#ifndef __declare_h
8#define __declare_h
9
10#if defined(__CYGWIN__)
11#include <Windows32/Base.h>
12#endif
13
14#if !defined(OS2_H_INCLUDED) && !defined(__CYGWIN__)
15#ifdef AMIGA
16
17#include <exec/types.h>
18
19#else /* AMIGA */
20typedef unsigned short USHORT;
21typedef short SHORT ;
22typedef unsigned short UWORD ;
23typedef short WORD ;
24typedef unsigned long ULONG ;
25typedef long LONG ;
26#endif /* !AMIGA */
27
28typedef unsigned char UCHAR ;
29typedef char CHAR ;
30typedef unsigned UINT ;
31typedef int INT ;
32#else
33typedef unsigned short UWORD ;
34#endif
35
36
37#endif /* __declare_h */
38