add casts to zune macros to silence some warnings
[tangerine.git] / workbench / prefs / serial / vars.h
blob4d4651b1dd13d2ce9b53f74fccdb082b72aa95cd
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 *AslBase;
25 VAR struct Library *GadToolsBase;
26 VAR struct Library *IFFParseBase;
27 VAR struct Library *CyberGfxBase;
29 VAR struct Screen *scr;
30 VAR struct Window *win;
31 VAR struct DrawInfo *dri;
32 VAR struct Menu *menus;
33 VAR APTR vi;
34 VAR struct Catalog *catalog;
35 VAR struct List country_list, language_list, pref_language_list;
36 VAR struct SerialPrefs serialprefs;
37 VAR WORD winwidth, winheight, buttonwidth, buttonheight;
38 VAR BOOL truecolor;
39 VAR UBYTE s[256];
41 VAR LONG prog_exitcode;