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/user32.cpp

    r1963 r2084  
    1 /* $Id: user32.cpp,v 1.58 1999-12-03 20:40:09 phaller Exp $ */
     1/* $Id: user32.cpp,v 1.59 1999-12-16 00:11:45 sandervl Exp $ */
    22
    33/*
     
    26762676/* Hook Functions */
    26772677
    2678 /*****************************************************************************
    2679  * Name      : BOOL WIN32API SetWindowsHookW
    2680  * Purpose   : The SetWindowsHook function is not implemented in the Win32 API.
    2681  *             Win32-based applications should use the SetWindowsHookEx function.
    2682  * Parameters:
    2683  * Variables :
    2684  * Result    :
    2685  * Remark    : ARGH ! MICROSOFT !
    2686  * Status    : UNTESTED STUB
    2687  *
    2688  * Author    : Patrick Haller [Thu, 1998/02/26 11:55]
    2689  *****************************************************************************/
    2690 HHOOK WIN32API SetWindowsHookW(int nFilterType, HOOKPROC pfnFilterProc)
    2691 
    2692 {
    2693   return (FALSE);
    2694 }
    2695 
    2696 /* CB: move to ShowWindow() */
    2697 
    2698 /*****************************************************************************
    2699  * Name      : BOOL WIN32API ShowWindowAsync
    2700  * Purpose   : The ShowWindowAsync function sets the show state of a window
    2701  *             created by a different thread.
    2702  * Parameters: HWND hwnd     handle of window
    2703  *             int  nCmdShow show state of window
    2704  * Variables :
    2705  * Result    : If the window was previously visible, the return value is TRUE.
    2706  *             If the window was previously hidden, the return value is FALSE.
    2707  * Remark    :
    2708  * Status    : UNTESTED STUB
    2709  *
    2710  * Author    : Patrick Haller [Thu, 1998/02/26 11:55]
    2711  *****************************************************************************/
    2712 BOOL WIN32API ShowWindowAsync (HWND hWnd,
    2713                                int  nCmdShow)
    2714 {
    2715   dprintf(("USER32:ShowWindowAsync (%08xh,%08x) not implemented.\n",
    2716          hWnd,
    2717          nCmdShow));
    2718 
    2719   return (FALSE);
    2720 }
    2721 
    27222678/* CB: move to MDI */
    27232679
Note: See TracChangeset for help on using the changeset viewer.