Chameleon

Chameleon Svn Source Tree

Root/branches/meklort/i386/modules/include/types.h

Source at commit 720 created 13 years 2 months ago.
By meklort, Makefile updates for modules. Modules now contain includes in <module_dir>/include if they are shared. These includes are copied to a global path after compilation of that module so that other modules can have function prototypes of it (yay long sentences....)
1#ifndef _TYPES_H_
2#define _TYPES_H_
3
4typedef unsigned char UInt8;
5typedef signed char SInt8;
6
7typedef unsigned short UInt16;
8typedef signed short SInt16;
9
10typedef unsigned int UInt32;
11typedef signed int SInt32;
12
13typedef unsigned long long UInt64;
14typedef signed long long SInt64;
15
16#endif /* _TYPES_H_ */

Archive Download this file

Revision: 720