Ignore:
Timestamp:
Dec 29, 2000, 7:41:23 PM (25 years ago)
Author:
sandervl
Message:

Win32ToOS2Handle & OS2ToWin32Handle exported with stdcall calling convention

File:
1 edited

Legend:

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

    r4658 r4848  
    1 /* $Id: oslibmsg.cpp,v 1.34 2000-11-21 11:36:08 sandervl Exp $ */
     1/* $Id: oslibmsg.cpp,v 1.35 2000-12-29 18:39:58 sandervl Exp $ */
    22/*
    33 * Window message translation functions for OS/2
     
    2626#include <winconst.h>
    2727#include <win32api.h>
    28 #include <win32wnd.h>
     28#include <winuser32.h>
    2929#include "oslibutil.h"
    3030#include "timer.h"
     
    102102{
    103103//  memcpy(os2Msg, winMsg, sizeof(MSG));
    104 //  os2Msg->hwnd = Win32Window::Win32ToOS2Handle(winMsg->hwnd);
     104//  os2Msg->hwnd = Win32ToOS2Handle(winMsg->hwnd);
    105105//  os2Msg->reserved = 0;
    106106}
     
    195195
    196196  if(hwnd) {
    197         hwndOS2 = Win32BaseWindow::Win32ToOS2Handle(hwnd);
     197        hwndOS2 = Win32ToOS2Handle(hwnd);
    198198        if(hwndOS2 == NULL) {
    199199                memset(pMsg, 0, sizeof(MSG));
     
    292292
    293293  if(hwnd && hwnd != -1) {
    294         hwndOS2 = Win32BaseWindow::Win32ToOS2Handle(hwnd);
     294        hwndOS2 = Win32ToOS2Handle(hwnd);
    295295        if(hwndOS2 == NULL) {
    296296                dprintf(("PeekMsg: window %x NOT FOUND!", hwnd));
Note: See TracChangeset for help on using the changeset viewer.