Changeset 1348 for trunk/src/user32/user32.cpp
- Timestamp:
- Oct 18, 1999, 12:54:04 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/user32.cpp
r1336 r1348 1 /* $Id: user32.cpp,v 1.4 3 1999-10-17 15:46:08sandervl Exp $ */1 /* $Id: user32.cpp,v 1.44 1999-10-18 10:54:04 sandervl Exp $ */ 2 2 3 3 /* … … 687 687 //****************************************************************************** 688 688 //****************************************************************************** 689 HWND WIN32API GetCapture(void)690 {691 #ifdef DEBUG692 WriteLog("USER32: GetCapture\n");693 #endif694 return Win32Window::OS2ToWin32Handle(O32_GetCapture());695 }696 //******************************************************************************697 //******************************************************************************698 689 UINT WIN32API GetDoubleClickTime(void) 699 690 { … … 735 726 BOOL WIN32API ReleaseCapture(void) 736 727 { 737 #ifdef DEBUG 738 WriteLog("USER32: ReleaseCapture\n"); 739 #endif 728 dprintf(("USER32: ReleaseCapture")); 740 729 return O32_ReleaseCapture(); 741 730 } 742 731 //****************************************************************************** 743 732 //****************************************************************************** 733 HWND WIN32API GetCapture(void) 734 { 735 HWND hwnd; 736 737 hwnd = Win32Window::OS2ToWin32Handle(O32_GetCapture()); 738 dprintf(("USER32: GetCapture returned %x", hwnd)); 739 return hwnd; 740 } 741 //****************************************************************************** 742 //****************************************************************************** 744 743 HWND WIN32API SetCapture( HWND hwnd) 745 744 { 746 745 #ifdef DEBUG 747 WriteLog("USER32: SetCapture\n");746 WriteLog("USER32: SetCapture %x", hwnd); 748 747 #endif 749 748 hwnd = Win32Window::Win32ToOS2Handle(hwnd);
Note:
See TracChangeset
for help on using the changeset viewer.