Ignore:
Timestamp:
Nov 8, 1999, 2:44:41 PM (26 years ago)
Author:
sandervl
Message:

Dinput additions + PostThreadMessageA/W fix

File:
1 edited

Legend:

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

    r1521 r1629  
    1 /* $Id: windowmsg.cpp,v 1.3 1999-10-30 13:21:56 sandervl Exp $ */
     1/* $Id: windowmsg.cpp,v 1.4 1999-11-08 13:44:17 sandervl Exp $ */
    22/*
    33 * Win32 window message APIs for OS/2
     
    207207//******************************************************************************
    208208//******************************************************************************
    209 BOOL WIN32API PostThreadMessageA( DWORD arg1, UINT arg2, WPARAM arg3, LPARAM  arg4)
    210 {
    211 #ifdef DEBUG
    212     WriteLog("USER32:  PostThreadMessageA\n");
    213 #endif
    214     return O32_PostThreadMessage(arg1, arg2, arg3, arg4);
    215 }
    216 //******************************************************************************
    217 //******************************************************************************
    218 BOOL WIN32API PostThreadMessageW( DWORD arg1, UINT arg2, WPARAM arg3, LPARAM  arg4)
    219 {
    220 #ifdef DEBUG
    221     WriteLog("USER32:  PostThreadMessageW\n");
    222 #endif
    223     // NOTE: This will not work as is (needs UNICODE support)
    224     return O32_PostThreadMessage(arg1, arg2, arg3, arg4);
     209BOOL WIN32API PostThreadMessageA( DWORD threadid, UINT msg, WPARAM wParam, LPARAM lParam)
     210{
     211    dprintf(("USER32:  PostThreadMessageA\n"));
     212    return O32_PostThreadMessage(threadid, WIN32APP_USERMSGBASE+msg, wParam, lParam);
     213}
     214//******************************************************************************
     215//******************************************************************************
     216BOOL WIN32API PostThreadMessageW( DWORD threadid, UINT msg, WPARAM wParam, LPARAM lParam)
     217{
     218    dprintf(("USER32:  PostThreadMessageW\n"));
     219    return O32_PostThreadMessage(threadid, WIN32APP_USERMSGBASE+msg, wParam, lParam);
    225220}
    226221//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.