The MASM Forum Archive 2004 to 2012

Project Support Forums => MASM32 => WINDOWS.INC Project => Topic started by: mumin16 on June 03, 2009, 11:54:52 AM

Title: isn't DATETIMEPICKERINFO defined in windows.inc? i can't find it.
Post by: mumin16 on June 03, 2009, 11:54:52 AM
isn't DATETIMEPICKERINFO defined in windows.inc? i can't find it.

typedef struct tagDATETIMEPICKERINFO {
    DWORD cbSize;
    RECT rcCheck;
    DWORD stateCheck;
    RECT rcButton;
    DWORD stateButton;
    HWND hwndEdit;
    HWND hwndUD;
    HWND hwndDropDown;
} DATETIMEPICKERINFO, *LPDATETIMEPICKERINFO;
Title: Re: isn't DATETIMEPICKERINFO defined in windows.inc? i can't find it.
Post by: ToutEnMasm on June 03, 2009, 01:57:19 PM

could be found only in the windows rc 7 translate ,Vista specific.

Quote
IF ( NTDDI_VERSION GE  NTDDI_VISTA)

DATETIMEPICKERINFO   STRUCT
   cbSize DWORD ?
   rcCheck RECT <>
   stateCheck DWORD ?
   rcButton RECT <>
   stateButton DWORD ?
   hwndEdit DWORD ?
   hwndUD DWORD ?
   hwndDropDown DWORD ?
DATETIMEPICKERINFO      ENDS