Changeset 6743 for trunk/include
- Timestamp:
- Sep 17, 2001, 11:30:28 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win32type.h
r5383 r6743 30 30 #ifndef OS2DEF_INCLUDED 31 31 // void 32 #undef VOID33 #undef PVOID34 32 typedef void VOID; 35 33 typedef void* PVOID; 36 34 37 35 // 32 bit integers 38 #undef LONG39 #undef PLONG40 #undef PCLONG41 36 typedef long LONG; 42 37 typedef signed long* PLONG; 43 38 typedef const signed long* PCLONG; 44 39 45 #undef ULONG46 #undef PULONG47 #undef PCULONG48 40 typedef unsigned long ULONG; 49 41 typedef unsigned long* PULONG; 50 42 typedef const unsigned long* PCULONG; 51 43 52 #undef INT3253 #undef PINT3254 #undef PCINT3255 44 typedef unsigned int INT32; 56 45 typedef unsigned int * PINT32; 57 46 typedef const unsigned int * PCINT32; 58 47 59 #undef UINT3260 #undef PUINT3261 #undef PCUINT3262 48 typedef unsigned int UINT32; 63 49 typedef unsigned int * PUINT32; 64 50 typedef const unsigned int * PCUINT32; 65 51 66 #undef UINT67 #undef PUINT68 #undef PCUINT69 52 typedef unsigned int UINT; 70 53 typedef unsigned int * PUINT; … … 73 56 74 57 // 16 bit integers 75 #undef SHORT76 #undef PSHORT77 #undef PCSHORT78 58 typedef short SHORT; 79 59 typedef signed short* PSHORT; 80 60 typedef const signed short* PCSHORT; 81 61 82 #undef USHORT83 #undef PUSHORT84 #undef PCUSHORT85 62 typedef unsigned short USHORT; 86 63 typedef unsigned short* PUSHORT; 87 64 typedef const unsigned short* PCUSHORT; 88 65 89 #undef UINT1690 #undef PUINT1691 #undef PCUINT1692 66 typedef unsigned short UINT16; 93 67 typedef unsigned short* PUINT16; … … 96 70 97 71 // 8 bit integers 98 #undef UCHAR99 #undef PUCHAR100 #undef PCUCHAR101 72 typedef unsigned char UCHAR; 102 73 typedef unsigned char* PUCHAR; 103 74 typedef const unsigned char* PCUCHAR; 104 75 105 #undef UINT8106 #undef PUINT8107 #undef PCUINT8108 76 typedef unsigned char UINT8; 109 77 typedef unsigned char* PUINT8; 110 78 typedef const unsigned char* PCUINT8; 111 79 112 #undef INT8113 #undef PINT8114 #undef PCINT8115 80 typedef signed char INT8; 116 81 typedef signed char* PINT8; 117 82 typedef const signed char* PCINT8; 118 83 119 #undef BYTE120 #undef PBYTE121 #undef PCBYTE122 84 typedef unsigned char BYTE; 123 85 typedef unsigned char* PBYTE; … … 125 87 126 88 // floats 127 #undef FLOAT128 #undef PFLOAT129 #undef LPFLOAT130 89 typedef float FLOAT, *PFLOAT, *LPFLOAT; 131 90 … … 139 98 #if !(defined(__WINE_WINDEF_H) || defined(OS2DEF_INCLUDED)) 140 99 141 #undef INT142 #undef PINT143 #undef PCINT144 100 typedef unsigned int INT; 145 101 typedef unsigned int * PINT; 146 102 typedef const unsigned int * PCINT; 147 103 148 #undef CHAR149 #undef PCHAR150 #undef PCCHAR151 104 typedef char CHAR; 152 105 typedef signed char* PCHAR; … … 162 115 #ifndef __WINE_WINDEF_H 163 116 // void 164 #undef LPVOID165 #undef LPCVOID166 117 typedef void* LPVOID; 167 118 typedef const void* LPCVOID; 168 119 169 120 // 32 bit integers 170 #undef LPLONG171 #undef LPCLONG172 121 typedef signed long* LPLONG; 173 122 typedef const signed long* LPCLONG; 174 123 175 #undef LPULONG176 #undef LPCULONG177 124 typedef unsigned long* LPULONG; 178 125 typedef const unsigned long* LPCULONG; 179 126 180 #undef LPINT32181 #undef LPCINT32182 127 typedef unsigned int * LPINT32; 183 128 typedef const unsigned int * LPCINT32; 184 129 185 #undef LPINT186 #undef LPCINT187 130 typedef unsigned int * LPINT; 188 131 typedef const unsigned int * LPCINT; 189 132 190 #undef LPUINT32191 #undef LPCUINT32192 133 typedef unsigned int * LPUINT32; 193 134 typedef const unsigned int * LPCUINT32; 194 135 195 #undef LPUINT196 #undef LPCUINT197 136 typedef unsigned int * LPUINT; 198 137 typedef const unsigned int * LPCUINT; … … 200 139 201 140 // 16 bit integers 202 #undef INT16203 #undef PINT16204 #undef PCINT16205 141 typedef unsigned short INT16; 206 142 typedef unsigned short* PINT16; 207 143 typedef const unsigned short* PCINT16; 208 144 209 #undef LPUINT16210 #undef LPCUINT16211 145 typedef unsigned short* LPUINT16; 212 146 typedef const unsigned short* LPCUINT16; 213 147 214 #undef LPSHORT215 #undef LPCSHORT216 148 typedef signed short* LPSHORT; 217 149 typedef const signed short* LPCSHORT; 218 150 219 #undef LPUSHORT220 #undef LPCUSHORT221 151 typedef unsigned short* LPUSHORT; 222 152 typedef const unsigned short* LPCUSHORT; 223 153 224 #undef LPINT16225 #undef LPCINT16226 154 typedef unsigned short* LPINT16; 227 155 typedef const unsigned short* LPCINT16; 228 156 229 157 // 8 bit integers 230 #undef LPCHAR231 #undef LPCCHAR232 158 typedef signed char* LPCHAR; 233 159 typedef const signed char* LPCCHAR; 234 160 235 #undef LPUCHAR236 #undef LPCUCHAR237 161 typedef unsigned char* LPUCHAR; 238 162 typedef const unsigned char* LPCUCHAR; 239 163 240 #undef LPUINT8241 #undef LPCUINT8242 164 typedef unsigned char* LPUINT8; 243 165 typedef const unsigned char* LPCUINT8; 244 166 245 #undef LPINT8246 #undef LPCINT8247 167 typedef signed char* LPINT8; 248 168 typedef const signed char* LPCINT8; 249 169 250 #undef LPBYTE251 #undef LPCBYTE252 170 typedef unsigned char* LPBYTE; 253 171 typedef const unsigned char* LPCBYTE; 254 172 255 173 // floats 256 #undef FLOAT257 #undef PFLOAT258 #undef LPFLOAT259 174 typedef float FLOAT, *PFLOAT, *LPFLOAT; 260 175 … … 284 199 285 200 // 32 bit integer 286 #undef DWORD287 #undef PDWORD288 #undef LPDWORD289 #undef PCDWORD290 #undef LPCDWORD291 201 typedef unsigned long DWORD; 292 202 typedef unsigned long* PDWORD; … … 299 209 300 210 // 16 bit integer 301 #undef WORD302 #undef PWORD303 #undef LPWORD304 #undef PCWORD305 #undef LPCWORD306 211 typedef unsigned short WORD; 307 typedef unsigned short* PWORD;308 typedef unsigned short* LPWORD;309 typedef const unsigned short* PCWORD;310 typedef const unsigned short* LPCWORD;212 typedef WORD * PWORD; 213 typedef WORD * LPWORD; 214 typedef const WORD * PCWORD; 215 typedef const WORD * LPCWORD; 311 216 312 217
Note:
See TracChangeset
for help on using the changeset viewer.