Ignore:
Timestamp:
Aug 28, 1999, 11:25:56 AM (26 years ago)
Author:
achimha
Message:

merged with latest WINE changes

File:
1 edited

Legend:

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

    r499 r722  
    1 /* $Id: commctrl.h,v 1.10 1999-08-14 17:23:23 achimha Exp $ */
     1/* $Id: commctrl.h,v 1.11 1999-08-28 09:25:55 achimha Exp $ */
    22/*
    33 * Common controls definitions
     
    32473247#define GDTR_MAX     0x0002
    32483248
    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)   \
    32523252  (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) \
    32563256   (BOOL)SendMessageA (hdp, DTM_SETRANGE, (WPARAM)(gd), (LPARAM)(rgst))
    32573257#define DateTime_SetFormat WINELIB_NAME_AW(DateTime_SetFormat)
    3258 #define DateTime_SetFormatA(hdp, sz)  \\
     3258#define DateTime_SetFormatA(hdp, sz)  \
    32593259  (BOOL)SendMessageA (hdp, DTM_SETFORMAT, 0, (LPARAM)(sz))
    3260 #define DateTime_SetFormatW(hdp, sz)  \\
     3260#define DateTime_SetFormatW(hdp, sz)  \
    32613261  (BOOL)SendMessageW (hdp, DTM_SETFORMAT, 0, (LPARAM)(sz))
    3262 #define DateTime_GetMonthCalColor(hdp, iColor) \\
     3262#define DateTime_GetMonthCalColor(hdp, iColor) \
    32633263  SendMessageA (hdp, DTM_GETMCCOLOR, iColor, 0)
    3264 #define DateTime_GetMonthCal(hdp)  \\
     3264#define DateTime_GetMonthCal(hdp)  \
    32653265  (HWND) SendMessageA (hdp, DTM_GETMONTHCAL, 0, 0)
    3266 #define DateTime_SetMonthCalFont(hdp, hfont, fRedraw) \\
     3266#define DateTime_SetMonthCalFont(hdp, hfont, fRedraw) \
    32673267  SendMessageA (hdp, DTM_SETMCFONT, (WPARAM)hfont, (LPARAM)fRedraw)
    3268 #define DateTime_GetMonthCalFont(hdp) \\
     3268#define DateTime_GetMonthCalFont(hdp) \
    32693269  SendMessageA (hdp, DTM_GETMCFONT, 0, 0)
    32703270
Note: See TracChangeset for help on using the changeset viewer.