Changeset 9973 for trunk/include/win/windef.h
- Timestamp:
- Apr 2, 2003, 2:57:39 PM (23 years ago)
- File:
-
- 1 edited
-
trunk/include/win/windef.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/windef.h
r9969 r9973 14 14 15 15 #define WINVER 0x0500 16 17 #ifdef UNICODE 18 #include <wchar.h> 19 #endif 16 20 17 21 #ifdef __cplusplus … … 228 232 typedef unsigned char UCHAR; 229 233 /* Some systems might have wchar_t, but we really need 16 bit characters */ 234 #ifdef UNICODE 235 typedef wchar_t WCHAR; 236 #else 230 237 typedef unsigned short WCHAR; 238 #endif 231 239 typedef unsigned short BOOL16; 240 #ifdef __FORCE_BOOL_AS_INT__ 241 typedef int BOOL; 242 #else 232 243 typedef unsigned long BOOL; 244 #endif 233 245 typedef double DATE; 234 246 typedef long LONG_PTR;
Note:
See TracChangeset
for help on using the changeset viewer.
