mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-07 21:41:07 +00:00
29 lines
620 B
C
29 lines
620 B
C
|
/*
|
||
|
* Name: General Use Types Definitions -- Header Include file
|
||
|
* Version: 1.24
|
||
|
* Author: Vladimir Arnost (QA-Software)
|
||
|
* Last revision: Sep-4-1995
|
||
|
* Compiler: Borland C++ 3.1, Watcom C/C++ 10.0
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef __DEFTYPES_H_
|
||
|
#define __DEFTYPES_H_
|
||
|
|
||
|
/* Global type declarations */
|
||
|
|
||
|
#include "doomtype.h"
|
||
|
|
||
|
/* machine dependent types */
|
||
|
typedef unsigned char uchar;
|
||
|
typedef unsigned short ushort;
|
||
|
typedef unsigned int uint;
|
||
|
typedef unsigned long ulong;
|
||
|
|
||
|
typedef signed char schar;
|
||
|
typedef signed short sshort;
|
||
|
typedef signed int sint;
|
||
|
typedef signed long slong;
|
||
|
|
||
|
#endif // __DEFTYPES_H_
|