integer types

cvs
Mackenzie Straight 2005-03-19 21:55:28 +00:00
parent 54e06729fb
commit 4bee6179a4
1 changed files with 9 additions and 0 deletions

View File

@ -62,6 +62,15 @@ CELL cs_bot;
#include <string.h>
#include <time.h>
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
typedef unsigned long long uint64_t;
typedef signed char int8_t;
typedef signed short int16_t;
typedef signed int int32_t;
typedef signed long long int64_t;
#ifdef WIN32
#include <windows.h>