VirtualBox

Ignore:
Timestamp:
Jan 21, 2010 9:26:23 AM (15 years ago)
Author:
vboxsync
Message:

crOpenGL: update to wine 1.1.36 and disable unnecessary fbo state poll

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/commctrl.h

    r21731 r25949  
    17831783#define TTTOOLINFOW_V1_SIZE CCSIZEOF_STRUCT(TTTOOLINFOW, lpszText)
    17841784#define TTTOOLINFO_V1_SIZE  CCSIZEOF_STRUCT(WINELIB_NAME_AW(TTTOOLINFO), lpszText)
     1785#define TTTOOLINFOA_V2_SIZE CCSIZEOF_STRUCT(TTTOOLINFOA, lParam)
     1786#define TTTOOLINFOW_V2_SIZE CCSIZEOF_STRUCT(TTTOOLINFOW, lParam)
     1787#define TTTOOLINFOA_V3_SIZE CCSIZEOF_STRUCT(TTTOOLINFOA, lpReserved)
     1788#define TTTOOLINFOW_V3_SIZE CCSIZEOF_STRUCT(TTTOOLINFOW, lpReserved)
    17851789
    17861790typedef struct _TT_HITTESTINFOA
     
    30193023#define LVSIL_SMALL             1
    30203024#define LVSIL_STATE             2
     3025#define LVSIL_GROUPHEADER       3
    30213026
    30223027/* following 2 flags only for LVS_OWNERDATA listviews */
     
    30263031
    30273032
    3028 #define LVFI_PARAM              0X0001
    3029 #define LVFI_STRING             0X0002
    3030 #define LVFI_PARTIAL            0X0008
    3031 #define LVFI_WRAP               0X0020
    3032 #define LVFI_NEARESTXY          0X0040
     3033#define LVFI_PARAM              0x0001
     3034#define LVFI_STRING             0x0002
     3035#define LVFI_SUBSTRING          0x0004
     3036#define LVFI_PARTIAL            0x0008
     3037#define LVFI_WRAP               0x0020
     3038#define LVFI_NEARESTXY          0x0040
    30333039
    30343040#define LVIF_TEXT               0x0001
     
    42704276#define TCN_LAST                (0U-580U)
    42714277#define TCN_KEYDOWN             (TCN_FIRST - 0)
    4272 #define TCN_SELCHANGE           (TCN_FIRST - 1)
     4278#define TCN_SELCHANGE           (TCN_FIRST - 1)
    42734279#define TCN_SELCHANGING         (TCN_FIRST - 2)
    42744280#define TCN_GETOBJECT           (TCN_FIRST - 3)
     4281#define TCN_FOCUSCHANGE         (TCN_FIRST - 4)
    42754282
    42764283#include <pshpack1.h>
     
    46754682#define MCS_NOTODAY            0x0010
    46764683#define MCS_NOTODAYCIRCLE      0x0008
     4684#define MCS_NOTRAILINGDATES    0x0040
    46774685
    46784686#define MCHT_TITLE             0x00010000
     
    47104718        UINT uHit;
    47114719        SYSTEMTIME st;
     4720        /* Vista */
     4721        RECT rc;
     4722        INT iOffset;
     4723        INT iRow;
     4724        INT iCol;
    47124725} MCHITTESTINFO, *PMCHITTESTINFO;
     4726
     4727#define MCHITTESTINFO_V1_SIZE CCSIZEOF_STRUCT(MCHITTESTINFO, st)
    47134728
    47144729typedef struct tagNMSELCHANGE
     
    47344749
    47354750#define MonthCal_GetCurSel(hmc, pst) \
    4736                 (BOOL)SNDMSGA(hmc, MCM_GETCURSEL, 0, (LPARAM)(pst))
     4751                (BOOL)SNDMSG(hmc, MCM_GETCURSEL, 0, (LPARAM)(pst))
    47374752#define MonthCal_SetCurSel(hmc, pst)  \
    4738                 (BOOL)SNDMSGA(hmc, MCM_SETCURSEL, 0, (LPARAM)(pst))
     4753                (BOOL)SNDMSG(hmc, MCM_SETCURSEL, 0, (LPARAM)(pst))
    47394754#define MonthCal_GetMaxSelCount(hmc) \
    4740                 (DWORD)SNDMSGA(hmc, MCM_GETMAXSELCOUNT, 0, 0L)
     4755                (DWORD)SNDMSG(hmc, MCM_GETMAXSELCOUNT, 0, 0L)
    47414756#define MonthCal_SetMaxSelCount(hmc, n) \
    4742                 (BOOL)SNDMSGA(hmc, MCM_SETMAXSELCOUNT, (WPARAM)(n), 0L)
     4757                (BOOL)SNDMSG(hmc, MCM_SETMAXSELCOUNT, (WPARAM)(n), 0L)
    47434758#define MonthCal_GetSelRange(hmc, rgst) \
    4744                 SNDMSGA(hmc, MCM_GETSELRANGE, 0, (LPARAM) (rgst))
     4759                SNDMSG(hmc, MCM_GETSELRANGE, 0, (LPARAM) (rgst))
    47454760#define MonthCal_SetSelRange(hmc, rgst) \
    4746                 SNDMSGA(hmc, MCM_SETSELRANGE, 0, (LPARAM) (rgst))
     4761                SNDMSG(hmc, MCM_SETSELRANGE, 0, (LPARAM) (rgst))
    47474762#define MonthCal_GetMonthRange(hmc, gmr, rgst) \
    4748                 (DWORD)SNDMSGA(hmc, MCM_GETMONTHRANGE, (WPARAM)(gmr), (LPARAM)(rgst))
     4763                (DWORD)SNDMSG(hmc, MCM_GETMONTHRANGE, (WPARAM)(gmr), (LPARAM)(rgst))
    47494764#define MonthCal_SetDayState(hmc, cbds, rgds) \
    4750                 SNDMSGA(hmc, MCM_SETDAYSTATE, (WPARAM)(cbds), (LPARAM)(rgds))
     4765                SNDMSG(hmc, MCM_SETDAYSTATE, (WPARAM)(cbds), (LPARAM)(rgds))
    47514766#define MonthCal_GetMinReqRect(hmc, prc) \
    4752                 SNDMSGA(hmc, MCM_GETMINREQRECT, 0, (LPARAM)(prc))
     4767                SNDMSG(hmc, MCM_GETMINREQRECT, 0, (LPARAM)(prc))
    47534768#define MonthCal_SetColor(hmc, iColor, clr)\
    4754         SNDMSGA(hmc, MCM_SETCOLOR, iColor, clr)
     4769        SNDMSG(hmc, MCM_SETCOLOR, iColor, clr)
    47554770#define MonthCal_GetColor(hmc, iColor) \
    4756                 SNDMSGA(hmc, MCM_SETCOLOR, iColor, 0)
     4771                SNDMSG(hmc, MCM_SETCOLOR, iColor, 0)
    47574772#define MonthCal_GetToday(hmc, pst)\
    4758                 (BOOL)SNDMSGA(hmc, MCM_GETTODAY, 0, (LPARAM)pst)
     4773                (BOOL)SNDMSG(hmc, MCM_GETTODAY, 0, (LPARAM)pst)
    47594774#define MonthCal_SetToday(hmc, pst)\
    4760                 SNDMSGA(hmc, MCM_SETTODAY, 0, (LPARAM)pst)
     4775                SNDMSG(hmc, MCM_SETTODAY, 0, (LPARAM)pst)
    47614776#define MonthCal_HitTest(hmc, pinfo) \
    4762         SNDMSGA(hmc, MCM_HITTEST, 0, (LPARAM)(PMCHITTESTINFO)pinfo)
     4777        SNDMSG(hmc, MCM_HITTEST, 0, (LPARAM)(PMCHITTESTINFO)pinfo)
    47634778#define MonthCal_SetFirstDayOfWeek(hmc, iDay) \
    4764         SNDMSGA(hmc, MCM_SETFIRSTDAYOFWEEK, 0, iDay)
     4779        SNDMSG(hmc, MCM_SETFIRSTDAYOFWEEK, 0, iDay)
    47654780#define MonthCal_GetFirstDayOfWeek(hmc) \
    4766         (DWORD)SNDMSGA(hmc, MCM_GETFIRSTDAYOFWEEK, 0, 0)
     4781        (DWORD)SNDMSG(hmc, MCM_GETFIRSTDAYOFWEEK, 0, 0)
    47674782#define MonthCal_GetRange(hmc, rgst) \
    4768         (DWORD)SNDMSGA(hmc, MCM_GETRANGE, 0, (LPARAM)(rgst))
     4783        (DWORD)SNDMSG(hmc, MCM_GETRANGE, 0, (LPARAM)(rgst))
    47694784#define MonthCal_SetRange(hmc, gd, rgst) \
    4770         (BOOL)SNDMSGA(hmc, MCM_SETRANGE, (WPARAM)(gd), (LPARAM)(rgst))
     4785        (BOOL)SNDMSG(hmc, MCM_SETRANGE, (WPARAM)(gd), (LPARAM)(rgst))
    47714786#define MonthCal_GetMonthDelta(hmc) \
    4772         (int)SNDMSGA(hmc, MCM_GETMONTHDELTA, 0, 0)
     4787        (int)SNDMSG(hmc, MCM_GETMONTHDELTA, 0, 0)
    47734788#define MonthCal_SetMonthDelta(hmc, n) \
    4774         (int)SNDMSGA(hmc, MCM_SETMONTHDELTA, n, 0)
     4789        (int)SNDMSG(hmc, MCM_SETMONTHDELTA, n, 0)
    47754790#define MonthCal_GetMaxTodayWidth(hmc) \
    4776         (DWORD)SNDMSGA(hmc, MCM_GETMAXTODAYWIDTH, 0, 0)
     4791        (DWORD)SNDMSG(hmc, MCM_GETMAXTODAYWIDTH, 0, 0)
    47774792#define MonthCal_SetUnicodeFormat(hwnd, fUnicode)  \
    4778         (BOOL)SNDMSGA((hwnd), MCM_SETUNICODEFORMAT, (WPARAM)(fUnicode), 0)
     4793        (BOOL)SNDMSG((hwnd), MCM_SETUNICODEFORMAT, (WPARAM)(fUnicode), 0)
    47794794#define MonthCal_GetUnicodeFormat(hwnd)  \
    4780         (BOOL)SNDMSGA((hwnd), MCM_GETUNICODEFORMAT, 0, 0)
     4795        (BOOL)SNDMSG((hwnd), MCM_GETUNICODEFORMAT, 0, 0)
    47814796
    47824797
     
    49384953
    49394954#define DateTime_GetSystemtime(hdp, pst)   \
    4940   (DWORD)SNDMSGA (hdp, DTM_GETSYSTEMTIME , 0, (LPARAM)(pst))
     4955  (DWORD)SNDMSG (hdp, DTM_GETSYSTEMTIME , 0, (LPARAM)(pst))
    49414956#define DateTime_SetSystemtime(hdp, gd, pst)   \
    4942   (BOOL)SNDMSGA (hdp, DTM_SETSYSTEMTIME, (LPARAM)(gd), (LPARAM)(pst))
     4957  (BOOL)SNDMSG (hdp, DTM_SETSYSTEMTIME, (LPARAM)(gd), (LPARAM)(pst))
    49434958#define DateTime_GetRange(hdp, rgst)  \
    4944   (DWORD)SNDMSGA (hdp, DTM_GETRANGE, 0, (LPARAM)(rgst))
     4959  (DWORD)SNDMSG (hdp, DTM_GETRANGE, 0, (LPARAM)(rgst))
    49454960#define DateTime_SetRange(hdp, gd, rgst) \
    4946    (BOOL)SNDMSGA (hdp, DTM_SETRANGE, (WPARAM)(gd), (LPARAM)(rgst))
     4961   (BOOL)SNDMSG (hdp, DTM_SETRANGE, (WPARAM)(gd), (LPARAM)(rgst))
    49474962#define DateTime_SetFormatA(hdp, sz)  \
    49484963  (BOOL)SNDMSGA (hdp, DTM_SETFORMATA, 0, (LPARAM)(sz))
     
    49514966#define DateTime_SetFormat WINELIB_NAME_AW(DateTime_SetFormat)
    49524967#define DateTime_GetMonthCalColor(hdp, iColor) \
    4953   SNDMSGA (hdp, DTM_GETMCCOLOR, iColor, 0)
     4968  SNDMSG (hdp, DTM_GETMCCOLOR, iColor, 0)
    49544969#define DateTime_SetMonthCalColor(hdp, iColor, clr) \
    4955   SNDMSGA (hdp, DTM_SETMCCOLOR, iColor, clr)
     4970  SNDMSG (hdp, DTM_SETMCCOLOR, iColor, clr)
    49564971#define DateTime_GetMonthCal(hdp)  \
    4957   (HWND) SNDMSGA (hdp, DTM_GETMONTHCAL, 0, 0)
     4972  (HWND) SNDMSG (hdp, DTM_GETMONTHCAL, 0, 0)
    49584973#define DateTime_SetMonthCalFont(hdp, hfont, fRedraw) \
    4959   SNDMSGA (hdp, DTM_SETMCFONT, (WPARAM)hfont, (LPARAM)fRedraw)
     4974  SNDMSG (hdp, DTM_SETMCFONT, (WPARAM)hfont, (LPARAM)fRedraw)
    49604975#define DateTime_GetMonthCalFont(hdp) \
    4961   SNDMSGA (hdp, DTM_GETMCFONT, 0, 0)
     4976  SNDMSG (hdp, DTM_GETMCFONT, 0, 0)
    49624977
    49634978#define DA_LAST         (0x7fffffff)
     
    50165031#endif
    50175032
     5033/* SysLink styles */
     5034#define LWS_TRANSPARENT      0x0001
     5035#define LWS_IGNORERETURN     0x0002
     5036
    50185037/* SysLink messages */
    50195038#define LM_HITTEST           (WM_USER + 768)
     
    51175136
    51185137/**************************************************************************
    5119  * List box control
     5138 * Listbox control
    51205139 */
    51215140
     
    51315150
    51325151/**************************************************************************
    5133  * Scroll bar control
     5152 * Scrollbar control
    51345153 */
    51355154
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette