Changeset 2084 for trunk/src/user32/user32.cpp
- Timestamp:
- Dec 16, 1999, 1:11:49 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/user32.cpp
r1963 r2084 1 /* $Id: user32.cpp,v 1.5 8 1999-12-03 20:40:09 phallerExp $ */1 /* $Id: user32.cpp,v 1.59 1999-12-16 00:11:45 sandervl Exp $ */ 2 2 3 3 /* … … 2676 2676 /* Hook Functions */ 2677 2677 2678 /*****************************************************************************2679 * Name : BOOL WIN32API SetWindowsHookW2680 * 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 STUB2687 *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 ShowWindowAsync2700 * Purpose : The ShowWindowAsync function sets the show state of a window2701 * created by a different thread.2702 * Parameters: HWND hwnd handle of window2703 * int nCmdShow show state of window2704 * 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 STUB2709 *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 2722 2678 /* CB: move to MDI */ 2723 2679
Note:
See TracChangeset
for help on using the changeset viewer.