File: lineflags.h

package info (click to toggle)
aime 0.60.3-7
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 6,016 kB
  • ctags: 5,217
  • sloc: cpp: 77,611; ansic: 3,765; sh: 2,996; makefile: 234; sed: 93
file content (28 lines) | stat: -rw-r--r-- 519 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef _LINEFLAGS_H_
#define _LINEFLAGS_H_

#define LINEFLAG_NEWPLAYER   0
#define LINEFLAG_SENDALL     1
#define LINEFLAG_PLAYER      2
#define LINEFLAG_BUILDER     3
#define LINEFLAG_SENDBUILDER 4
#define LINEFLAG_SENDADMIN   5
#define LINEFLAG_SENDHASCHAT 6
#define LINEFLAG_MESSAGEBEEP 7

#ifdef CHATLINE_C

char *lineflagnames[] = {"NewPlayer", "SendAll", "Player", "Builder", 
	  "SendBuilder", "SendAdmin", "SendHasChat", "MessageBeep",
          NULL};

#else

extern char *lineflagnames[];

#endif
#endif