Ignore:
Timestamp:
Mar 31, 2001, 3:25:59 PM (25 years ago)
Author:
sandervl
Message:

Resync with Wine + previous merge fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/comctl32/flatsb.c

    r4627 r5416  
    2121#include "debugtools.h"
    2222
     23#ifdef __WIN32OS2__
     24#include "ccbase.h"
     25#endif
     26
    2327DEFAULT_DEBUG_CHANNEL(commctrl);
    2428
    2529typedef struct
    2630{
     31#ifdef __WIN32OS2__
     32    COMCTL32_HEADER header;
     33#endif
    2734    DWORD dwDummy;  /* just to keep the compiler happy ;-) */
    2835} FLATSB_INFO, *LPFLATSB_INFO;
     
    180187{
    181188    TRACE("[%04x] wParam=%04x lParam=%08lx\n", hwnd, wParam, lParam);
     189#ifdef __WIN32OS2__
     190    initControl(hwnd,sizeof(FLATSB_INFO));
     191#endif
     192
    182193    return 0;
    183194}
     
    188199{
    189200    TRACE("[%04x] wParam=%04x lParam=%08lx\n", hwnd, wParam, lParam);
     201#ifdef __WIN32OS2__
     202    /* free pager info data */
     203    doneControl(hwnd);
     204#endif
    190205    return 0;
    191206}
Note: See TracChangeset for help on using the changeset viewer.