1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
//////////////////////////////////////////////////////////////////////////////
//
// std.h
//
//////////////////////////////////////////////////////////////////////////////
#if defined(__OS2__)
#define INCL_DOSMISC
#define INCL_BASE
#include <os2.h>
#define _STD_
#endif
#ifndef _STD_
#define _STD_
#ifndef TRUE
#define TRUE (1==1)
#endif
#ifndef FALSE
#define FALSE (1==0)
#endif
#ifndef BOOL
typedef int BOOL;
#endif
#ifndef CBOOL
typedef char CBOOL;
#endif
#ifndef SZERROR
#define SZERROR strerror(errno)
#endif
typedef unsigned char UCHAR;
typedef unsigned short USHORT;
typedef unsigned int UINT;
typedef unsigned long ULONG;
#endif // _STD_
|