Ignore:
Timestamp:
Dec 16, 1999, 1:11:49 AM (26 years ago)
Author:
sandervl
Message:

sendmessage + hook updates + misc fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/window.cpp

    r2033 r2084  
    1 /* $Id: window.cpp,v 1.41 1999-12-09 00:53:38 sandervl Exp $ */
     1/* $Id: window.cpp,v 1.42 1999-12-16 00:11:48 sandervl Exp $ */
    22/*
    33 * Win32 window apis for OS/2
     
    394394{
    395395  Win32BaseWindow *window;
     396  BOOL rc;
    396397
    397398    window = Win32BaseWindow::GetWindowFromHandle(hwnd);
     
    401402        return 0;
    402403    }
    403     dprintf(("IsIconic %x", hwnd));
    404     return window->IsIconic();
     404    rc = window->IsIconic();
     405    dprintf(("IsIconic %x returned %d", hwnd, rc));
     406    return rc;
    405407}
    406408//******************************************************************************
     
    461463    dprintf(("ShowWindow %x", hwnd));
    462464    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 *****************************************************************************/
     480BOOL 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);
    463488}
    464489//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.