Ignore:
Timestamp:
Sep 12, 2002, 11:30:06 AM (23 years ago)
Author:
sandervl
Message:

Translate PM WM_VSCROLL to WM_MOUSEWHEEL messages

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/oslibwin.cpp

    r9143 r9230  
    1 /* $Id: oslibwin.cpp,v 1.126 2002-08-27 09:30:50 sandervl Exp $ */
     1/* $Id: oslibwin.cpp,v 1.127 2002-09-12 09:30:06 sandervl Exp $ */
    22/*
    33 * Window API wrappers for OS/2
     
    12111211}
    12121212//******************************************************************************
    1213 //******************************************************************************
     1213//PF This was added for IBM Wheel Mouse driver - it searches for scrollbars and
     1214//only if they exist sends WM_VSCROLL messages to the window
     1215//******************************************************************************
     1216HWND OSLibWinCreateInvisibleScroller(HWND parentHWND, int direction)
     1217{
     1218    return WinCreateWindow(parentHWND, WC_SCROLLBAR, NULL, direction,
     1219                           0, 0, 0, 0, parentHWND, HWND_BOTTOM, 1, NULL, NULL);
     1220}
     1221//******************************************************************************
     1222//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.