Ignore:
Timestamp:
Jan 15, 2000, 4:05:37 PM (26 years ago)
Author:
sandervl
Message:

ScrollWindow & non-client scroll tracking bugfixes/changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/new/oslibmsg.cpp

    r2406 r2445  
    1 /* $Id: oslibmsg.cpp,v 1.13 2000-01-11 13:06:25 sandervl Exp $ */
     1/* $Id: oslibmsg.cpp,v 1.14 2000-01-15 15:05:37 sandervl Exp $ */
    22/*
    33 * Window message translation functions for OS/2
     
    248248}
    249249//******************************************************************************
     250//PeekMessage retrieves only messages associated with the window identified by the
     251//hwnd parameter or any of its children as specified by the IsChild function, and within
     252//the range of message values given by the uMsgFilterMin and uMsgFilterMax
     253//parameters. If hwnd is NULL, PeekMessage retrieves messages for any window that
     254//belongs to the current thread making the call. (PeekMessage does not retrieve
     255//messages for windows that belong to other threads.) If hwnd is -1, PeekMessage only
     256//returns messages with a hwnd value of NULL, as posted by the PostAppMessage
     257//function. If uMsgFilterMin and uMsgFilterMax are both zero, PeekMessage returns all
     258//available messages (no range filtering is performed).
     259//TODO: Not working as specified right now!
    250260//******************************************************************************
    251261BOOL OSLibWinPeekMsg(LPMSG pMsg, HWND hwnd, UINT uMsgFilterMin, UINT uMsgFilterMax,
Note: See TracChangeset for help on using the changeset viewer.