Install crosstools into its own directory. Tools dir much cleaner now.
[AROS.git] / compiler / include / prefs / workbench.h
blob9a062d60dcc05c8add44f8b884f0a9eb7edec0a1
1 #ifndef PREFS_WORKBENCH_H
2 #define PREFS_WORKBENCH_H
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: Workbench prefs definitions
9 Lang: English
12 #ifndef LIBRARIES_IFFPARSE_H
13 #include <libraries/iffparse.h>
14 #endif
16 #ifndef GRAPHICS_GFX_H
17 #include <graphics/gfx.h>
18 #endif
20 #define ID_WBNC MAKE_ID('W','B','N','C')
22 struct WorkbenchPrefs {
23 ULONG wbp_DefaultStackSize;
24 ULONG wbp_TypeRestartTime;
26 ULONG wbp_IconPrecision;
27 struct Rectangle wbp_EmbossRect;
28 BOOL wbp_Borderless;
29 LONG wbp_MaxNameLength;
30 BOOL wbp_NewIconsSupport;
31 BOOL wbp_ColorIconSupport;
34 #define ID_WBHD MAKE_ID('W','B','H','D')
36 struct WorkbenchHiddenDevicePrefs {
37 UBYTE whdp_Name[0];
40 #endif /* PREFS_WORKBENCH_H */