diff options
author | jsorg71 <jsorg71> | 2007-04-11 03:37:42 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2007-04-11 03:37:42 +0000 |
commit | 50817f791efd95995e10ba04bc53c7689d1d9af5 (patch) | |
tree | 45120ba15a3dfdb6eab483416dc843a57bd29910 /common | |
parent | d373ee9322c288d00b2614cf2573190fcacd95f8 (diff) | |
download | xrdp-proprietary-50817f791efd95995e10ba04bc53c7689d1d9af5.tar.gz xrdp-proprietary-50817f791efd95995e10ba04bc53c7689d1d9af5.zip |
added size int types
Diffstat (limited to 'common')
-rw-r--r-- | common/arch.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/common/arch.h b/common/arch.h index 2cb533d8..13e22ad5 100644 --- a/common/arch.h +++ b/common/arch.h @@ -62,4 +62,15 @@ #define EXPORT_CC #endif +typedef char ti8; +typedef unsigned char tui8; +typedef signed char tsi8; +typedef short ti16; +typedef unsigned short tui16; +typedef signed short tsi16; +typedef int ti32; +typedef unsigned int tui32; +typedef signed int tsi32; +typedef long tbus; + #endif |