blob: 07d9aa9c9cfd099c7fe0c82a6e334042bcde62ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/*
* PARSEC HEADER: d_glob.h
*/
#ifndef _D_GLOB_H_
#define _D_GLOB_H_
// ----------------------------------------------------------------------------
// DRAWING SUBSYSTEM (D) related global declarations and definitions -
// ----------------------------------------------------------------------------
// BMAP group
//char * GlobalColXlat;
//char * BrightxMap;
// FONT group
extern dword Char16x16Geom[];
extern dword Char08x08Geom[];
extern dword Char04x09Geom[];
extern dword CharGoldGeom[];
extern char* CharsetDataBase;
#endif // _D_GLOB_H_
|