Changeset 1704 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Nov 11, 1999, 2:17:33 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r1694 r1704 1 /* $Id: win32wbase.cpp,v 1.8 0 1999-11-10 20:02:48sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.81 1999-11-11 13:17:31 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 173 173 windowId = 0xFFFFFFFF; //default = -1 174 174 userData = 0; 175 contextHelpId = 0; 175 176 176 177 pOldFrameProc = NULL; … … 1151 1152 1152 1153 if(ISMOUSE_CAPTURED()) { 1153 1154 POINT point = {x,y}; 1154 1155 1155 1156 MapWindowPoints(getWindowHandle(), HWND_DESKTOP, &point, 1); 1156 1157 1157 if(DInputMouseHandler(getWindowHandle(), MOUSEMSG_MOVE, point.x, point.y, keystate)) 1158 return 0; 1158 1159 } 1159 1160 … … 2692 2693 LONG oldval; 2693 2694 2694 switch(index) { 2695 dprintf2(("SetWindowLongA %x %d %x", getWindowHandle(), index, value)); 2696 switch(index) { 2695 2697 case GWL_EXSTYLE: 2696 2698 { … … 2752 2754 SetLastError(ERROR_INVALID_PARAMETER); 2753 2755 return 0; 2754 }2756 } 2755 2757 } 2756 2758 //****************************************************************************** … … 2758 2760 ULONG Win32BaseWindow::GetWindowLongA(int index) 2759 2761 { 2760 switch(index) { 2762 dprintf2(("GetWindowLongA %x %d", getWindowHandle(), index)); 2763 switch(index) { 2761 2764 case GWL_EXSTYLE: 2762 2765 return dwExStyle; … … 2783 2786 SetLastError(ERROR_INVALID_PARAMETER); 2784 2787 return 0; 2785 }2788 } 2786 2789 } 2787 2790 //****************************************************************************** … … 2838 2841 Win32BaseWindow *win32wnd; 2839 2842 DWORD magic; 2843 2844 if(hwnd == OSLIB_HWND_DESKTOP) 2845 { 2846 return windowDesktop; 2847 } 2840 2848 2841 2849 win32wnd = (Win32BaseWindow *)OSLibWinGetWindowULong(hwnd, OFFSET_WIN32WNDPTR);
Note:
See TracChangeset
for help on using the changeset viewer.