Current News
Archived News
Search News
Discussion Forum


Old Forum
Install Programs More Downloads...
Troubleshooting
Source Code
Format Specs.
Misc. Information
Non-SF Stuff
Links




CommitLineData
1c63ef2a 1#ifndef SFTYPES_INCLUDED
2#define SFTYPES_INCLUDED
3
4typedef signed char Int8;
5typedef signed short Int16;
6typedef signed long Int32;
7typedef signed __int64 Int64;
8
9typedef unsigned char UInt8;
10typedef unsigned short UInt16;
11typedef unsigned long UInt32;
12typedef unsigned __int64 UInt64;
13
14union IntConv {
15 Int8 i8[8];
16 UInt8 ui8[8];
17 Int16 i16[4];
18 UInt16 ui16[4];
19 Int32 i32[2];
20 UInt32 ui32[2];
21 Int64 i64;
22 UInt64 ui64;
23};
24
25#endif // #ifndef SFTYPES_INCLUDED
26