Changeset 385 for trunk/src/user32/new/win32wnd.cpp
- Timestamp:
- Jul 24, 1999, 4:01:45 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/win32wnd.cpp
r383 r385 1 /* $Id: win32wnd.cpp,v 1. 19 1999-07-24 12:39:53sandervl Exp $ */1 /* $Id: win32wnd.cpp,v 1.20 1999-07-24 14:01:45 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Code for OS/2 … … 708 708 return 0; //todo 709 709 } 710 return 0; 710 711 } 711 712 //****************************************************************************** … … 1409 1410 BOOL Win32Window::IsWindowEnabled() 1410 1411 { 1411 return OSLibWinIsWindowEnabled(OS2Hwnd);1412 return OSLibWinIsWindowEnabled(OS2Hwnd); 1412 1413 } 1413 1414 //****************************************************************************** … … 1415 1416 BOOL Win32Window::IsWindowVisible() 1416 1417 { 1417 return OSLibWinIsWindowVisible(OS2Hwnd);1418 return OSLibWinIsWindowVisible(OS2Hwnd); 1418 1419 } 1419 1420 //****************************************************************************** … … 1421 1422 BOOL Win32Window::GetWindowRect(PRECT pRect) 1422 1423 { 1423 // return OSLibWinIsWindowVisible(OS2Hwnd);1424 return OSLibWinQueryWindowRect(OS2Hwnd, pRect, RELATIVE_TO_SCREEN); 1424 1425 } 1425 1426 //****************************************************************************** … … 1427 1428 int Win32Window::GetWindowTextLengthA() 1428 1429 { 1429 return OSLibWinQueryWindowTextLength(OS2Hwnd);1430 return OSLibWinQueryWindowTextLength(OS2Hwnd); 1430 1431 } 1431 1432 //****************************************************************************** … … 1433 1434 int Win32Window::GetWindowTextA(LPSTR lpsz, int cch) 1434 1435 { 1435 return OSLibWinQueryWindowText(OS2Hwnd, cch, lpsz);1436 return OSLibWinQueryWindowText(OS2Hwnd, cch, lpsz); 1436 1437 } 1437 1438 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.