Contains a number of commonly used integer types which allows a degree of portability for any code which uses them.

Dependents:   GameduinoTest SimpleGameduinoTest RobotRic WiiClassicControllerTest ... more

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Types.h Source File

Types.h

00001 /*
00002  * SOURCE FILE : Types.h
00003  *
00004  * Various types defined for portability.
00005  *
00006  */
00007 
00008 #ifndef TypesIncluded
00009   
00010   #define TypesIncluded
00011 
00012   typedef unsigned char UInt8;
00013   typedef signed char Int8;
00014   typedef unsigned short UInt16;
00015   typedef signed short Int16;
00016   typedef unsigned long UInt32;
00017   typedef signed long Int32;
00018   
00019 #endif
00020 
00021 /* END of Types.h */
00022