00001 /* 00002 Free Download Manager Copyright (c) 2003-2007 FreeDownloadManager.ORG 00003 */ 00004 00005 #ifndef __INTTYPES_H_ 00006 #define __INTTYPES_H_ 00007 00008 typedef signed char int8_t; 00009 typedef unsigned char uint8_t; 00010 00011 typedef int int16_t; 00012 typedef unsigned int uint16_t; 00013 00014 typedef long int32_t; 00015 typedef unsigned long uint32_t; 00016 00017 typedef __int64 int64_t; 00018 typedef unsigned __int64 uint64_t; 00019 00020 typedef int16_t intptr_t; 00021 typedef uint16_t uintptr_t; 00022 00023 typedef __int64 int64_t_C; 00024 00025 #endif
1.5.6