Files
pspsdk/tools/PrxEncrypter/types.h
2011-12-07 04:39:59 +13:00

21 lines
307 B
C

/*
* types.h
*
* Created on: Jan 4, 2011
*/
#ifndef TYPES_H_
#define TYPES_H_
typedef char s8;
typedef short s16;
typedef int s32;
typedef long long s64;
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned int u32;
typedef unsigned long long u64;
#endif /* TYPES_H_ */