Changeset 329 for trunk/src/user32/new/user32.cpp
- Timestamp:
- Jul 18, 1999, 4:56:37 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/user32.cpp
r327 r329 1 /* $Id: user32.cpp,v 1. 6 1999-07-18 13:57:47 cbratschiExp $ */1 /* $Id: user32.cpp,v 1.7 1999-07-18 14:56:36 sandervl Exp $ */ 2 2 3 3 /* … … 383 383 BOOL WIN32API GetUpdateRect( HWND hWnd, PRECT lpRect, BOOL bErase) 384 384 { 385 OSRECTL rect;386 385 ULONG windowH; 387 386 BOOL rc; … … 391 390 #endif 392 391 if (!lpRect) return FALSE; 392 393 393 hWnd = Win32ToOS2Handle(hWnd); 394 rc = OSLibWinQueryUpdateRect(hWnd,&rect); 395 windowH = OSLibGetWindowHeight(hWnd); 396 OS2ToWin32Rect(lpRect,&rect,windowH); 397 return rc; 394 return OSLibWinQueryUpdateRect(hWnd, (PVOID)&lpRect); 398 395 } 399 396 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.