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/winmouse.cpp

    r4697 r4848  
    1 /* $Id: winmouse.cpp,v 1.11 2000-11-25 13:53:54 sandervl Exp $ */
     1/* $Id: winmouse.cpp,v 1.12 2000-12-29 18:40:00 sandervl Exp $ */
    22/*
    33 * Mouse handler for DINPUT
     
    1212#include <misc.h>
    1313#include "win32wbase.h"
    14 #include "win32wnd.h"
     14#include <winuser32.h>
    1515#include <win\mouse.h>
    1616#include "winmouse.h"
     
    110110 HWND hwnd;
    111111
    112     hwnd = Win32Window::OS2ToWin32Handle(OSLibWinQueryCapture());
     112    hwnd = OS2ToWin32Handle(OSLibWinQueryCapture());
    113113    dprintf(("USER32: GetCapture returned %x", hwnd));
    114114    return hwnd;
     
    129129        ReleaseCapture();
    130130    }
    131     rc = OSLibWinSetCapture(Win32Window::Win32ToOS2Handle(hwnd));
     131    rc = OSLibWinSetCapture(Win32ToOS2Handle(hwnd));
    132132    dprintf(("USER32: SetCapture %x (prev %x) returned %d", hwnd, hwndPrev, rc));
    133133    if(hwndPrev) {
Note: See TracChangeset for help on using the changeset viewer.