Changeset 508 for trunk/src/user32/new/win32wnd.cpp
- Timestamp:
- Aug 16, 1999, 5:54:11 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/win32wnd.cpp
r398 r508 1 /* $Id: win32wnd.cpp,v 1.2 4 1999-07-26 20:03:49 sandervlExp $ */1 /* $Id: win32wnd.cpp,v 1.25 1999-08-16 15:54:11 dengert Exp $ */ 2 2 /* 3 3 * Win32 Window Code for OS/2 … … 5 5 * 6 6 * Copyright 1998-1999 Sander van Leeuwen (sandervl@xs4all.nl) 7 * Copyright 1999 Daniela Engert (dani@ngrt.de) 7 8 * 8 9 * Parts based on Wine Windows code (windows\win.c) … … 842 843 //****************************************************************************** 843 844 //****************************************************************************** 844 ULONG Win32Window::MsgButton(ULONG msg, ULONG x, ULONGy)845 ULONG Win32Window::MsgButton(ULONG msg, ULONG ncx, ULONG ncy, ULONG clx, ULONG cly) 845 846 { 846 847 ULONG win32msg; 847 848 ULONG win32ncmsg; 848 849 849 dprintf(("MsgButton to (%d,%d)", x,y));850 dprintf(("MsgButton to (%d,%d)", ncx, ncy)); 850 851 switch(msg) { 851 852 case BUTTON_LEFTDOWN: … … 894 895 } 895 896 } 896 SendInternalMessageA(win32ncmsg, lastHitTestVal, MAKELONG( x,y)); //TODO:897 return SendInternalMessageA(win32msg, 0, MAKELONG( x,y));897 SendInternalMessageA(win32ncmsg, lastHitTestVal, MAKELONG(ncx, ncy)); //TODO: 898 return SendInternalMessageA(win32msg, 0, MAKELONG(clx, cly)); 898 899 } 899 900 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.