Ignore:
Timestamp:
Aug 22, 2003, 3:16:45 PM (22 years ago)
Author:
sandervl
Message:

Ignore messages sent or posted to the desktop window; Post/SendMessage: use shared or local memory depending

File:
1 edited

Legend:

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

    r8953 r10240  
    1 /* $Id: message.cpp,v 1.5 2002-08-01 16:04:19 sandervl Exp $ */
     1/* $Id: message.cpp,v 1.6 2003-08-22 13:16:44 sandervl Exp $ */
    22/*
    33 * Win32 window message APIs for OS/2
     
    210210        //otherwise use WinSendMsg to send it to the right process/thread
    211211        dprintf(("SendMessages (inter-process/thread) %x %x %x %x", Win32ToOS2Handle(hwnd), msg, wparam, lparam));
    212         result = OSLibSendMessage(Win32ToOS2Handle(hwnd), msg, wparam, lparam, TRUE);
     212        result = OSLibSendMessage(hwnd, Win32ToOS2Handle(hwnd), msg, wparam, lparam, TRUE);
    213213        ret = 1;
    214214    }
     
    255255        //otherwise use WinSendMsg to send it to the right process/thread
    256256        dprintf(("SendMessages (inter-process/thread) %x %x %x %x", Win32ToOS2Handle(hwnd), msg, wparam, lparam));
    257         result = OSLibSendMessage(Win32ToOS2Handle(hwnd), msg, wparam, lparam, FALSE);
     257        result = OSLibSendMessage(hwnd, Win32ToOS2Handle(hwnd), msg, wparam, lparam, FALSE);
    258258        ret = 1;
    259259    }
Note: See TracChangeset for help on using the changeset viewer.