Changeset 722 for trunk/include/win/commctrl.h
- Timestamp:
- Aug 28, 1999, 11:25:56 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/commctrl.h
r499 r722 1 /* $Id: commctrl.h,v 1.1 0 1999-08-14 17:23:23achimha Exp $ */1 /* $Id: commctrl.h,v 1.11 1999-08-28 09:25:55 achimha Exp $ */ 2 2 /* 3 3 * Common controls definitions … … 3247 3247 #define GDTR_MAX 0x0002 3248 3248 3249 #define DateTime_GetSystemtime(hdp, pst) \ \3250 (DWORD)SendMessageA (hdp, DTM_GETSYSTEMTIME , 0, (LPARAM)(pst)) 3251 #define DateTime_SetSystemtime(hdp, gd, pst) \ \3249 #define DateTime_GetSystemtime(hdp, pst) \ 3250 (DWORD)SendMessageA (hdp, DTM_GETSYSTEMTIME , 0, (LPARAM)(pst)) 3251 #define DateTime_SetSystemtime(hdp, gd, pst) \ 3252 3252 (BOOL)SendMessageA (hdp, DTM_SETSYSTEMTIME, (LPARAM)(gd), (LPARAM)(pst)) 3253 #define DateTime_GetRange(hdp, rgst) \ \3254 (DWORD)SendMessageA (hdp, DTM_GETRANGE, 0, (LPARAM)(rgst)) 3255 #define DateTime_SetRange(hdp, gd, rgst) \ \3253 #define DateTime_GetRange(hdp, rgst) \ 3254 (DWORD)SendMessageA (hdp, DTM_GETRANGE, 0, (LPARAM)(rgst)) 3255 #define DateTime_SetRange(hdp, gd, rgst) \ 3256 3256 (BOOL)SendMessageA (hdp, DTM_SETRANGE, (WPARAM)(gd), (LPARAM)(rgst)) 3257 3257 #define DateTime_SetFormat WINELIB_NAME_AW(DateTime_SetFormat) 3258 #define DateTime_SetFormatA(hdp, sz) \ \3258 #define DateTime_SetFormatA(hdp, sz) \ 3259 3259 (BOOL)SendMessageA (hdp, DTM_SETFORMAT, 0, (LPARAM)(sz)) 3260 #define DateTime_SetFormatW(hdp, sz) \ \3260 #define DateTime_SetFormatW(hdp, sz) \ 3261 3261 (BOOL)SendMessageW (hdp, DTM_SETFORMAT, 0, (LPARAM)(sz)) 3262 #define DateTime_GetMonthCalColor(hdp, iColor) \ \3262 #define DateTime_GetMonthCalColor(hdp, iColor) \ 3263 3263 SendMessageA (hdp, DTM_GETMCCOLOR, iColor, 0) 3264 #define DateTime_GetMonthCal(hdp) \ \3264 #define DateTime_GetMonthCal(hdp) \ 3265 3265 (HWND) SendMessageA (hdp, DTM_GETMONTHCAL, 0, 0) 3266 #define DateTime_SetMonthCalFont(hdp, hfont, fRedraw) \ \3266 #define DateTime_SetMonthCalFont(hdp, hfont, fRedraw) \ 3267 3267 SendMessageA (hdp, DTM_SETMCFONT, (WPARAM)hfont, (LPARAM)fRedraw) 3268 #define DateTime_GetMonthCalFont(hdp) \ \3268 #define DateTime_GetMonthCalFont(hdp) \ 3269 3269 SendMessageA (hdp, DTM_GETMCFONT, 0, 0) 3270 3270
Note:
See TracChangeset
for help on using the changeset viewer.