added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / workbench / c / iprefs / vars.h
blobb22e492e8a77402807316290adfff23b6e43f62f
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: English
7 */
9 #ifndef VAR
10 #define VAR extern
11 #endif
13 VAR struct IntuitionBase *IntuitionBase;
14 VAR struct GfxBase *GfxBase;
16 #ifdef __AROS__
17 VAR struct UtilityBase *UtilityBase;
18 VAR struct LocaleBase *LocaleBase;
19 #else
20 VAR struct Library *UtilityBase;
21 VAR struct Library *LocaleBase;
22 #endif
24 VAR struct Library *KeymapBase;
25 VAR struct Library *LayersBase;
26 VAR struct Library *DataTypesBase;
27 VAR struct Library *DiskfontBase;
28 VAR struct Library *IFFParseBase;
30 VAR struct MsgPort *notifyport;
31 VAR struct IPrefsSem *iprefssem;
33 VAR WORD prog_exitcode;
34 VAR UBYTE s[256];
36 VAR UBYTE envname[256];
38 VAR UBYTE inputprefsname[256];
39 VAR UBYTE fontprefsname[256];
40 VAR UBYTE screenprefsname[256];
41 VAR UBYTE localeprefsname[256];
42 VAR UBYTE paletteprefsname[256];
43 VAR UBYTE patternprefsname[256];
44 VAR UBYTE icontrolprefsname[256];
45 VAR UBYTE screenmodeprefsname[256];
46 VAR UBYTE serialprefsname[256];
47 VAR UBYTE printerprefsname[256];
48 VAR UBYTE pointerprefsname[256];
49 VAR UBYTE overscanprefsname[256];
51 VAR BOOL patches_installed;