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
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
Generated on Mon Jul 25 2022 09:45:52 by
