Changeset 2084 for trunk/src/user32/window.cpp
- Timestamp:
- Dec 16, 1999, 1:11:49 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/window.cpp
r2033 r2084 1 /* $Id: window.cpp,v 1.4 1 1999-12-09 00:53:38 sandervl Exp $ */1 /* $Id: window.cpp,v 1.42 1999-12-16 00:11:48 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window apis for OS/2 … … 394 394 { 395 395 Win32BaseWindow *window; 396 BOOL rc; 396 397 397 398 window = Win32BaseWindow::GetWindowFromHandle(hwnd); … … 401 402 return 0; 402 403 } 403 dprintf(("IsIconic %x", hwnd)); 404 return window->IsIconic(); 404 rc = window->IsIconic(); 405 dprintf(("IsIconic %x returned %d", hwnd, rc)); 406 return rc; 405 407 } 406 408 //****************************************************************************** … … 461 463 dprintf(("ShowWindow %x", hwnd)); 462 464 return window->ShowWindow(nCmdShow); 465 } 466 /***************************************************************************** 467 * Name : BOOL WIN32API ShowWindowAsync 468 * Purpose : The ShowWindowAsync function sets the show state of a window 469 * created by a different thread. 470 * Parameters: HWND hwnd handle of window 471 * int nCmdShow show state of window 472 * Variables : 473 * Result : If the window was previously visible, the return value is TRUE. 474 * If the window was previously hidden, the return value is FALSE. 475 * Remark : 476 * Status : UNTESTED STUB 477 * 478 * Author : Patrick Haller [Thu, 1998/02/26 11:55] 479 *****************************************************************************/ 480 BOOL WIN32API ShowWindowAsync (HWND hwnd, 481 int nCmdShow) 482 { 483 dprintf(("USER32:ShowWindowAsync (%08xh,%08x) not correctly implemented.\n", 484 hwnd, 485 nCmdShow)); 486 487 return ShowWindow(hwnd, nCmdShow); 463 488 } 464 489 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.