00001 #ifndef far_pointers_h 00002 #define far_pointers_h 00003 00004 /* these few does not belong here really */ 00005 typedef int int32; 00006 typedef short int int16; 00007 typedef unsigned int uint32; 00008 typedef unsigned short int uint16; 00009 00010 typedef int * INT_PQ; 00011 typedef unsigned int * UINT_PQ; 00012 typedef unsigned int * UINT32_PQ; 00013 typedef void * VOID_PQ; 00014 typedef void ** VOID_PPQ; 00015 typedef long long * INT64_PQ; 00016 typedef unsigned long long * UINT64_PQ; 00017 typedef unsigned long long ** UINT64_PPQ; 00018 typedef char * CHAR_PQ; 00019 typedef char ** CHAR_PPQ; 00020 typedef short * SHORT_PQ; 00021 typedef unsigned short * USHORT_PQ; 00022 00023 #if 0 00024 typedef unsigned long long INT_PQ; 00025 typedef unsigned long long UINT_PQ; 00026 typedef unsigned long long UINT32_PQ; 00027 typedef unsigned long long VOID_PQ; 00028 typedef unsigned long long VOID_PPQ; 00029 typedef unsigned long long INT64_PQ; 00030 typedef unsigned long long UINT64_PQ; 00031 typedef unsigned long long UINT64_PPQ; 00032 typedef unsigned long long CHAR_PQ; 00033 typedef unsigned long long CHAR_PPQ; 00034 typedef unsigned long long SHORT_PQ; 00035 typedef unsigned long long USHORT_PQ; 00036 #endif 00037 00038 #endif 00039