only generate the default.properties file when we are actually doing an android build.
[AROS.git] / workbench / c / iprefs / vars.h
blob8ee43272d02ef3f1cd8036acbed2c7b8bf32e987
1 /*
2 Copyright © 1995-2011, 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 KMSLibrary *KMSBase;
26 VAR struct Library *LayersBase;
27 VAR struct Library *DataTypesBase;
28 VAR struct Library *DiskfontBase;
29 VAR struct Library *IFFParseBase;
31 VAR struct MsgPort *notifyport;
32 VAR struct IPrefsSem *iprefssem;
34 VAR WORD prog_exitcode;
35 VAR UBYTE s[256];
37 VAR UBYTE envname[256];
39 VAR UBYTE inputprefsname[256];
40 VAR UBYTE fontprefsname[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;