source: trunk/src/win32k/dev16/d16globl.c@ 4997

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

Added new api enhancement option and win32k ini filename.

File size: 1.5 KB
Line 
1/* $Id: d16globl.c,v 1.3 2001-01-20 23:53:27 bird Exp $
2 *
3 * d16globals - global data (16-bit)
4 *
5 * Copyright (c) 1999 knut st. osmundsen
6 *
7 * Project Odin Software License can be found in LICENSE.TXT
8 *
9 */
10
11/*******************************************************************************
12* Defined Constants *
13*******************************************************************************/
14#define INCL_NOPMAPI
15
16/*******************************************************************************
17* Header Files *
18*******************************************************************************/
19#include <os2.h>
20#include "devSegDf.h"
21#include "options.h"
22#include "log.h"
23
24
25/*******************************************************************************
26* Global Variables *
27*******************************************************************************/
28
29/* Note: All global variables must be initialized! *
30 * Uninitialized variables ends up in DATA32. */
31PFN Device_Help = NULL;
32ULONG TKSSBase16 = 0;
33USHORT R0FlatCS16 = 0;
34USHORT R0FlatDS16 = 0;
35BOOL fInitTime = TRUE;
36struct options
37 DATA16_GLOBAL options = DEFAULT_OPTION_ASSIGMENTS;
38
39CHAR szBuildDate[] = {__DATE__};
40CHAR szBuildTime[] = {__TIME__};
41CHAR szWin32kIni[CCHMAXPATH] = {"\win32k.ini"};
42
Note: See TracBrowser for help on using the repository browser.