source: trunk/src/user32/unknown.cpp@ 171

Last change on this file since 171 was 171, checked in by phaller, 26 years ago

Add: added unknown API IsHungAppWindow()

File size: 1.7 KB
Line 
1/* $Id: unknown.cpp,v 1.1 1999-06-23 22:39:01 phaller Exp $ */
2
3/*
4 * Project Odin Software License can be found in LICENSE.TXT
5 * Win32 USER32 Subsystem for OS/2
6 */
7
8/*****************************************************************************
9 * Includes *
10 *****************************************************************************/
11
12#include <os2win.h>
13
14
15/*****************************************************************************
16 * Defines *
17 *****************************************************************************/
18
19/*****************************************************************************
20 * Structures *
21 *****************************************************************************/
22
23/*****************************************************************************
24 * Prototypes *
25 *****************************************************************************/
26
27
28/*****************************************************************************
29 * Name : IsHungAppWindow
30 * Purpose : UNKNOWN
31 * Parameters: UNKNOWN
32 * Variables :
33 * Result :
34 * Remark :
35 * Status : UNTESTED UNKNOWN
36 *
37 * Author : Patrick Haller [Tue, 1999/06/01 09:00]
38 *****************************************************************************/
39
40BOOL WIN32API IsHungAppWindow(HWND hwnd,
41 ULONG ulDummy)
42{
43 dprintf (("USER32: IsHungAppWindow(%08xh,%08xh) not implemented.\n",
44 hwnd,
45 ulDummy));
46
47 return(FALSE);
48}
Note: See TracBrowser for help on using the repository browser.