Changeset 8962 for trunk/src


Ignore:
Timestamp:
Aug 5, 2002, 6:31:27 PM (23 years ago)
Author:
sandervl
Message:

Translate WM_DRAWCLIPBOARD for clipboard change notification

Location:
trunk/src/user32
Files:
3 edited

Legend:

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

    r8702 r8962  
    1 /* $Id: oslibmsgtranslate.cpp,v 1.89 2002-06-18 09:32:26 sandervl Exp $ */
     1/* $Id: oslibmsgtranslate.cpp,v 1.90 2002-08-05 16:31:26 sandervl Exp $ */
    22/*
    33 * Window message translation functions for OS/2
     
    897897        break;
    898898
     899    case WM_DRAWCLIPBOARD:
     900        winMsg->message = WINWM_DRAWCLIPBOARD;
     901        break;
     902
    899903    case WM_HSCROLL:
    900904    case WM_VSCROLL:
  • trunk/src/user32/pmwindow.cpp

    r8916 r8962  
    1 /* $Id: pmwindow.cpp,v 1.183 2002-07-24 18:43:11 sandervl Exp $ */
     1/* $Id: pmwindow.cpp,v 1.184 2002-08-05 16:31:26 sandervl Exp $ */
    22/*
    33 * Win32 Window Managment Code for OS/2
     
    734734    case WM_RENDERALLFMTS:
    735735    case WM_DESTROYCLIPBOARD:
     736    case WM_DRAWCLIPBOARD:
    736737        win32wnd->DispatchMsgA(pWinMsg);
    737738        break;
  • trunk/src/user32/windowmsg.cpp

    r8960 r8962  
    1 /* $Id: windowmsg.cpp,v 1.38 2002-08-05 09:45:49 sandervl Exp $ */
     1/* $Id: windowmsg.cpp,v 1.39 2002-08-05 16:31:27 sandervl Exp $ */
    22/*
    33 * Win32 window message APIs for OS/2
     
    839839    //4 cases:
    840840    //1: Wait for all   -> check for message arrival, call WaitForMultipleObjects
    841     //2: Timeout = 0 ms -> check for message arrival, call WaitForMultipleObjects with timeout 0
     841    //2: Timeout = 0 ms -> call WaitForMultipleObjects with timeout 0, check for message arrival
    842842    //3: nCount = 0     -> check for message arrival
    843843    //4: rest           -> check for either message arrival or signalled object
Note: See TracChangeset for help on using the changeset viewer.