Ignore:
Timestamp:
Apr 2, 2003, 2:57:39 PM (23 years ago)
Author:
sandervl
Message:

YD: Header updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/windef.h

    r9969 r9973  
    1414
    1515#define WINVER 0x0500
     16
     17#ifdef UNICODE
     18#include <wchar.h>
     19#endif
    1620
    1721#ifdef __cplusplus
     
    228232typedef unsigned char   UCHAR;
    229233/* Some systems might have wchar_t, but we really need 16 bit characters */
     234#ifdef UNICODE
     235typedef wchar_t         WCHAR;
     236#else
    230237typedef unsigned short  WCHAR;
     238#endif
    231239typedef unsigned short  BOOL16;
     240#ifdef __FORCE_BOOL_AS_INT__
     241typedef int             BOOL;
     242#else
    232243typedef unsigned long   BOOL;
     244#endif
    233245typedef double          DATE;
    234246typedef long            LONG_PTR;
Note: See TracChangeset for help on using the changeset viewer.