![]()
Parent Directory
|
Revision Log
Copy old working vx32 version from vxa-060115 tag.
#ifndef MIK_TYPES_H #define MIK_TYPES_H #ifndef NULL #define NULL ((void *)0) #endif // POSIX-standard type names typedef signed char int8_t; typedef unsigned char uint8_t; typedef signed short int16_t; typedef unsigned short uint16_t; typedef signed int int32_t; typedef unsigned int uint32_t; //typedef signed long int64_t; //typedef unsigned long uint64_t; typedef signed long intptr_t; typedef unsigned long uintptr_t; typedef unsigned long size_t; typedef signed long ssize_t; // Short Mik-specific type names typedef signed char i8; typedef unsigned char u8; typedef signed short i16; typedef unsigned short u16; typedef signed int i32; typedef unsigned int u32; //typedef signed long i64; //typedef unsigned long u64; #endif // MIK_TYPES_H
| Maintained by PDOS | ViewVC Help |
| Powered by ViewVC 1.0.3 |