source: trunk/src/win32k/lib/libWin32kInstalled.c

Last change on this file was 5224, checked in by bird, 25 years ago

CallGate changes.

File size: 1.3 KB
Line 
1/* $Id: libWin32kInstalled.c,v 1.3 2001-02-21 07:47:59 bird Exp $
2 *
3 * libWin32kInstalled - checks if Win32k is installed or not.
4 *
5 * Copyright (c) 2000 knut st. osmundsen (knut.stange.osmundsen@mynd.no)
6 *
7 * Project Odin Software License can be found in LICENSE.TXT
8 *
9 */
10
11
12/*******************************************************************************
13* Header Files *
14*******************************************************************************/
15#define INCL_DOSERRORS
16
17
18/*******************************************************************************
19* Internal Functions *
20*******************************************************************************/
21#include <os2.h>
22#include "win32k.h"
23#include "libPrivate.h"
24
25
26/**
27 * Checks if Win32k is installed or not.
28 * @returns TRUE: Win32k is installed.
29 * FALSE: Win32k is not installed. (or not inited yet)
30 * @status completely implelemented.
31 * @author knut st. osmundsen (knut.stange.osmundsen@mynd.no)
32 * @remark The caller is reponsible for having called the libInit
33 * function before this call to get a decent result.
34 */
35BOOL APIENTRY libWin32kInstalled(void)
36{
37 return fInited;
38}
39
Note: See TracBrowser for help on using the repository browser.