Changeset 10567 for trunk/include


Ignore:
Timestamp:
Apr 5, 2004, 5:28:28 PM (22 years ago)
Author:
sandervl
Message:

update

Location:
trunk/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win32api.h

    r10389 r10567  
    250250BOOL      WINAPI GetTextMetricsW(HDC,LPTEXTMETRICW);
    251251
     252DWORD     WINAPI GetTimeZoneInformation(LPTIME_ZONE_INFORMATION);
     253BOOL      WINAPI SetTimeZoneInformation(const LPTIME_ZONE_INFORMATION);
     254
    252255#endif
  • trunk/include/win32type.h

    r10502 r10567  
    14661466} TEXTMETRICW, *LPTEXTMETRICW;
    14671467
    1468 #endif
     1468typedef struct {
     1469        LONG Bias;
     1470        WCHAR StandardName[32];
     1471        SYSTEMTIME StandardDate;
     1472        LONG StandardBias;
     1473        WCHAR DaylightName[32];
     1474        SYSTEMTIME DaylightDate;
     1475        LONG DaylightBias;
     1476} TIME_ZONE_INFORMATION, *LPTIME_ZONE_INFORMATION;
     1477
     1478#endif
Note: See TracChangeset for help on using the changeset viewer.