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
|
/******************************************************/
/* */
/* declare.h: declaration-symbols (UCHAR, ULONG, ...) */
/* */
/******************************************************/
/* ML - 01/2004: changed licence to GPL */
/*----------------------------------------------------*/
#ifndef __declare_h
#define __declare_h
#ifdef AMIGA
#include <exec/types.h>
#else /* AMIGA */
#include <stdint.h>
typedef uint16_t USHORT;
typedef int16_t SHORT ;
typedef uint16_t UWORD ;
typedef int16_t WORD ;
typedef uint32_t ULONG ;
typedef int32_t LONG ;
#endif /* !AMIGA */
typedef unsigned char UCHAR ;
typedef char CHAR ;
typedef unsigned UINT ;
typedef int INT ;
#endif /* __declare_h */
|