* Added BMBX to fix a problem
[citadel.git] / citadel / citserver.h
1 /* $Id$ */
2
3 #include "dynloader.h"
4
5 /* Simple linked list structure ... used in a bunch of different places. */
6 struct RoomProcList {
7         struct RoomProcList *next;
8         char name[ROOMNAMELEN];
9 };
10
11 void master_startup (void);
12 void master_cleanup (void);
13 void RemoveContext (struct CitContext *);
14 void set_wtmpsupp (char *newtext);
15 void set_wtmpsupp_to_current_room(void);
16 void cmd_info (void);
17 void cmd_time (void);
18 int is_public_client (char *where);
19 void cmd_iden (char *argbuf);
20 void cmd_mesg (char *mname);
21 void cmd_emsg (char *mname);
22 void cmd_term (char *cmdbuf);
23 void cmd_more (void);
24 void cmd_echo (char *etext);
25 void cmd_ipgm (char *argbuf);
26 void cmd_down (void);
27 void cmd_scdn (char *argbuf);
28 void cmd_extn (char *argbuf);
29 void deallocate_user_data(struct CitContext *con);
30 void *CtdlGetUserData(unsigned long requested_sym);
31 void CtdlAllocUserData(unsigned long requested_sym, size_t num_bytes);
32 void CtdlReallocUserData(unsigned long requested_sym, size_t num_bytes);
33 int CtdlGetDynamicSymbol(void);
34 void do_command_loop(void);
35 void begin_session(struct CitContext *con);
36 void citproto_begin_session(void);
37 void GenerateRoomDisplay(char *real_room,
38                         struct CitContext *viewed,
39                         struct CitContext *viewer);
40 extern DLEXP int do_defrag;
41 char CtdlCheckExpress(void);
42
43 int CtdlAccessCheck(int);
44
45 /* 'required access level' values which may be passed to CtdlAccessCheck()
46  */
47 enum {
48         ac_none,
49         ac_logged_in,
50         ac_room_aide,
51         ac_aide,
52         ac_internal
53 };
54
55
56
57