Ignore:
Timestamp:
Dec 29, 1999, 1:39:45 PM (26 years ago)
Author:
sandervl
Message:

PostThreadMessage fix

File:
1 edited

Legend:

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

    r2221 r2246  
    1 /* $Id: oslibwin.cpp,v 1.54 1999-12-27 22:53:53 cbratschi Exp $ */
     1/* $Id: oslibwin.cpp,v 1.55 1999-12-29 12:39:44 sandervl Exp $ */
    22/*
    33 * Window API wrappers for OS/2
     
    248248
    249249  return WinQueryWindowULong(hwnd, offset);
    250 }
    251 //******************************************************************************
    252 //******************************************************************************
    253 BOOL OSLibPostMessage(HWND hwnd, ULONG msg, ULONG wParam, ULONG lParam)
    254 {
    255   return WinPostMsg(hwnd, msg, (MPARAM)wParam, (MPARAM)lParam);
    256 }
    257 //******************************************************************************
    258 //******************************************************************************
    259 ULONG OSLibSendMessage(HWND hwnd, ULONG msg, ULONG wParam, ULONG lParam)
    260 {
    261   return (ULONG)WinSendMsg(hwnd, msg, (MPARAM)wParam, (MPARAM)lParam);
    262 }
    263 //******************************************************************************
    264 //******************************************************************************
    265 ULONG OSLibWinBroadcastMsg(ULONG msg, ULONG wParam, ULONG lParam, BOOL fSend)
    266 {
    267   return WinBroadcastMsg(HWND_DESKTOP, msg, (MPARAM)wParam, (MPARAM)lParam,
    268                          (fSend) ? BMSG_SEND : BMSG_POST);
    269250}
    270251//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.