Changeset 499 for trunk/include/win/datetime.h
- Timestamp:
- Aug 14, 1999, 7:23:24 PM (26 years ago)
- 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 ktkExp $ */1 /* $Id: datetime.h,v 1.2 1999-08-14 17:23:24 achimha Exp $ */ 2 2 3 3 /* … … 5 5 * 6 6 * Copyright 1998 Eric Kohl 7 * Copyright 1999 Alex Priem 7 8 */ 8 9 … … 12 13 typedef struct tagDATETIME_INFO 13 14 { 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; 17 29 } DATETIME_INFO, *LPDATETIME_INFO; 18 19 30 20 31 extern VOID DATETIME_Register (VOID); 21 32 extern VOID DATETIME_Unregister (VOID); 22 33 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 23 43 #endif /* __WINE_DATETIME_H */
Note:
See TracChangeset
for help on using the changeset viewer.