forwarding a radium compilation fix.
[AROS-Contrib.git] / dopus / DOpus_Icon / data.c
blobed55f1c19b623bcee1ad19f9ef22eace3e928889
1 /*
3 Directory Opus 4
4 Original GPL release version 4.12
5 Copyright 1993-2000 Jonathan Potter
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License
9 as published by the Free Software Foundation; either version 2
10 of the License, or (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 All users of Directory Opus 4 (including versions distributed
22 under the GPL) are entitled to upgrade to the latest version of
23 Directory Opus version 5 at a reduced price. Please see
24 http://www.gpsoft.com.au for more information.
26 The release of Directory Opus 4 under the GPL in NO WAY affects
27 the existing commercial status of Directory Opus 5.
31 #include "iconinfo.h"
33 char *version="$VER: DOpus_Icon 1.7 (" __DATE__ ")";
35 struct DOpusBase *DOpusBase;
36 struct IntuitionBase *IntuitionBase;
37 struct GfxBase *GfxBase;
38 struct Library *LayersBase;
39 struct Library *IconBase;
41 char protect_flags[6]={ /* The protection bits we understand */
42 FIBF_SCRIPT,
43 FIBF_ARCHIVE,
44 FIBF_READ,
45 FIBF_WRITE,
46 FIBF_EXECUTE,
47 FIBF_DELETE};
49 char
50 *specific_gadtext[5][6], /* Icon-specific gadget labels */
51 *icon_type_names[8], /* Names of different icon types */
53 protect_keys[6]={ /* Key equivalents for protection bits */
54 0x21, /* Script */
55 0x20, /* Archived */
56 0x13, /* Readable */
57 0x11, /* Writable */
58 0x12, /* Executable */
59 0x22}; /* Deletable */