* Reworked some of the data structures to handle multiple recipients
[citadel.git] / citadel / citserver.h
1 /* $Id$ */
2 void master_startup (void);
3 void master_cleanup (void);
4 void RemoveContext (struct CitContext *);
5 void set_wtmpsupp (char *newtext);
6 void set_wtmpsupp_to_current_room(void);
7 void cmd_info (void);
8 void cmd_rchg (char *newroomname);
9 void cmd_hchg (char *newhostname);
10 void cmd_uchg (char *newusername);
11 void cmd_time (void);
12 int is_public_client (char *where);
13 void cmd_iden (char *argbuf);
14 void cmd_stel (char *cmdbuf);
15 void cmd_mesg (char *mname);
16 void cmd_emsg (char *mname);
17 void cmd_rwho (void);
18 void cmd_term (char *cmdbuf);
19 void cmd_more (void);
20 void cmd_echo (char *etext);
21 void cmd_ipgm (char *argbuf);
22 void cmd_down (void);
23 void cmd_scdn (char *argbuf);
24 void cmd_extn (char *argbuf);
25 void deallocate_user_data(struct CitContext *con);
26 void *CtdlGetUserData(unsigned long requested_sym);
27 void CtdlAllocUserData(unsigned long requested_sym, size_t num_bytes);
28 void CtdlReallocUserData(unsigned long requested_sym, size_t num_bytes);
29 int CtdlGetDynamicSymbol(void);
30 void enter_housekeeping_cmd(char *);
31 void do_command_loop(void);
32 void begin_session(struct CitContext *con);
33 void citproto_begin_session(void);
34 void GenerateRoomDisplay(char *real_room,
35                         struct CitContext *viewed,
36                         struct CitContext *viewer);
37
38
39 extern int do_defrag;