diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2013-03-29 17:59:20 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2013-03-29 17:59:20 +0800 |
commit | f1ef31557e970a5bc8258fbe371bd2d8d7acf516 (patch) | |
tree | bdaf3718bd6d879a5df7467d4e9c07a8068bdd1f | |
parent | 82fe6a4015d1edc76cf995197a6714bf35b314cb (diff) | |
download | pttbbs-f1ef31557e970a5bc8258fbe371bd2d8d7acf516.tar pttbbs-f1ef31557e970a5bc8258fbe371bd2d8d7acf516.tar.gz pttbbs-f1ef31557e970a5bc8258fbe371bd2d8d7acf516.tar.bz2 pttbbs-f1ef31557e970a5bc8258fbe371bd2d8d7acf516.tar.lz pttbbs-f1ef31557e970a5bc8258fbe371bd2d8d7acf516.tar.xz pttbbs-f1ef31557e970a5bc8258fbe371bd2d8d7acf516.tar.zst pttbbs-f1ef31557e970a5bc8258fbe371bd2d8d7acf516.zip |
Definition of role id strings
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@5830 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/mbbsd/var.c | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/pttbbs/mbbsd/var.c b/pttbbs/mbbsd/var.c index dd3e973e..b7d603a9 100644 --- a/pttbbs/mbbsd/var.c +++ b/pttbbs/mbbsd/var.c @@ -41,6 +41,41 @@ const char * const str_permid[] = { "ĵ��" /* PERM_POLICE */ }; +const char * const str_roleid[] = { + "(�Ѩ�)�~�ޱb��(CIA)", /* 0x00000001 ROLE_ANGEL_CIA */ + "(�Ѩ�)���ʥαb��", /* 0x00000002 ROLE_ANGEL_ACTIVITY */ + "", /* 0x00000004 */ + "", /* 0x00000008 */ + "", /* 0x00000010 */ + "", /* 0x00000020 */ + "", /* 0x00000040 */ + "(�Ѩ�)�j�Ѩ�", /* 0x00000080 ROLE_ANGEL_ARCHANGEL */ + "(ĵ��)�ΦWĵ��", /* 0x00000100 ROLE_POLICE_ANONYMOUS */ + "", /* 0x00000200 */ + "", /* 0x00000400 */ + "", /* 0x00000800 */ + "", /* 0x00001000 */ + "", /* 0x00002000 */ + "", /* 0x00004000 */ + "", /* 0x00008000 */ + "", /* 0x00010000 */ + "", /* 0x00020000 */ + "", /* 0x00040000 */ + "", /* 0x00080000 */ + "", /* 0x00100000 */ + "", /* 0x00200000 */ + "", /* 0x00400000 */ + "", /* 0x00800000 */ + "", /* 0x01000000 */ + "", /* 0x02000000 */ + "", /* 0x04000000 */ + "", /* 0x08000000 */ + "", /* 0x10000000 */ + "", /* 0x20000000 */ + "", /* 0x40000000 */ + "", /* 0x80000000 */ +}; + const char * const str_permboard[] = { "���i Zap", /* BRD_NOZAP */ "���C�J�έp", /* BRD_NOCOUNT */ |