attribute for ‘struct XXXX’ must follow the ‘struct’ keyword
[AROS.git] / compiler / include / prefs / wanderer.h
blob3dbf2d0d3c6851563449845245e358a1654fa0a1
1 #ifndef PREFS_WANDERER_H
2 #define PREFS_WANDERER_H
4 /*
5 Copyright 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: wanderer prefs definitions
9 Lang: English
12 #ifndef GRAPHICS_GFX_H
13 #include <graphics/gfx.h>
14 #endif
16 #define ID_WANDR MAKE_ID('W','A','N','R')
19 /* The maximum length the path may have. */
20 #define PATHLENGTHSIZE 256
21 #define ICON_TEXT_MAXLEN_DEFAULT 20
23 struct WandererPrefsIFFChunkHeader
25 char wpIFFch_ChunkType[100];
26 ULONG wpIFFch_ChunkSize;
29 struct WandererPrefs
31 ULONG wpd_NavigationMethod; // Are we using the toolbar or not for navigation
32 ULONG wpd_ToolbarEnabled; // Is the toolbar enabled?
34 ULONG wpd_IconListMode; // How is it going to be listed
35 ULONG wpd_IconTextMode; // How is the text rendered
37 ULONG wpd_IconTextMaxLen; // Max length of icon text
40 #define WPD_NAVIGATION_CLASSIC 0
41 #define WPD_NAVIGATION_ENHANCED 1
42 #define WPD_ICONLISTMODE_GRID 0
43 #define WPD_ICONLISTMODE_PLAIN 1
44 #define WPD_ICONTEXTMODE_OUTLINE 0
45 #define WPD_ICONTEXTMODE_PLAIN 1
46 #define WPD_GENERAL 0
47 #define WPD_APPEARANCE 1
48 #define WPD_TOOLBAR 2
50 #endif /* PREFS_WORKBENCH_H */