Ignore:
Timestamp:
Aug 14, 1999, 7:23:24 PM (26 years ago)
Author:
achimha
Message:

headers for comctl32 updates

File:
1 edited

Legend:

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

    r4 r499  
    1 /* $Id: datetime.h,v 1.1 1999-05-24 20:19:10 ktk Exp $ */
     1/* $Id: datetime.h,v 1.2 1999-08-14 17:23:24 achimha Exp $ */
    22
    33/*
     
    55 *
    66 * Copyright 1998 Eric Kohl
     7 * Copyright 1999 Alex Priem
    78 */
    89
     
    1213typedef struct tagDATETIME_INFO
    1314{
    14     DWORD dwDummy;  /* just to keep the compiler happy ;-) */
    15 
    16 
     15        HWND hMonthCal;
     16        HWND hUpdown;
     17        SYSTEMTIME date;
     18        BOOL dateValid;
     19        HWND hwndCheckbut;
     20        RECT rect;
     21        RECT checkbox;
     22        RECT daytxt;
     23        RECT daynumtxt;
     24        RECT rmonthtxt;
     25        RECT yeartxt;
     26        RECT calbutton;
     27        int  select;
     28        HFONT hFont;
    1729} DATETIME_INFO, *LPDATETIME_INFO;
    18 
    1930
    2031extern VOID DATETIME_Register (VOID);
    2132extern VOID DATETIME_Unregister (VOID);
    2233
     34#define DTHT_NONE     0
     35#define DTHT_MCPOPUP  1
     36#define DTHT_YEAR     2
     37#define DTHT_DAYNUM   3
     38#define DTHT_MONTH    4
     39#define DTHT_DAY      5
     40#define DTHT_CHECKBOX 6
     41#define DTHT_GOTFOCUS 128
     42
    2343#endif  /* __WINE_DATETIME_H */
Note: See TracChangeset for help on using the changeset viewer.