add PrxEncrypter to tools

This commit is contained in:
Sam Hegarty
2011-12-07 03:10:23 +13:00
parent e804e64592
commit 581fe4b853
12 changed files with 3043 additions and 3 deletions

View File

@@ -0,0 +1,20 @@
/*
* 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_ */