ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/flags.h
Revision: 1.5
Committed: Sun Sep 16 18:54:42 2007 UTC (16 years, 8 months ago) by pippijn
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.4: +9 -4 lines
Log Message:
#defines to enum

File Contents

# Content
1 /**
2 * flags.h: Data structures for flags to bitmask processing routines.
3 *
4 * Copyright © 2007 Pippijn van Steenhoven / The Ermyth Team
5 * Rights to this code are as documented in COPYING.
6 *
7 *
8 * Portions of this file were derived from sources bearing the following license:
9 * Copyright © 2005-2007 William Pitcock, et al.
10 * Rights to this code are as documented in doc/pod/license.pod.
11 *
12 * $Id: flags.h,v 1.4 2007-08-30 19:56:19 pippijn Exp $
13 */
14
15 #ifndef FLAGS_H
16 #define FLAGS_H
17
18 /* flags stuff */
19 struct flags_table
20 {
21 char flag;
22 unsigned value;
23 };
24
25 E unsigned int ca_all;
26 E struct flags_table chanacs_flags[];
27
28 E void flags_make_bitmasks (char const * const string, struct flags_table table[], unsigned int *addflags, unsigned int *removeflags);
29 E unsigned int flags_to_bitmask (char const * const string, struct flags_table table[], unsigned int flags);
30 E char *bitmask_to_flags (unsigned int, struct flags_table[]);
31 E char *bitmask_to_flags2 (unsigned int, unsigned int, struct flags_table[]);
32 E unsigned int allow_flags (unsigned int flags);
33 E void update_chanacs_flags (void);
34
35 #endif