* In the wholist, only show <private room> if the user viewing the list
[citadel.git] / citadel / citserver.h
1 /* $Id$ */
2 void master_startup (void);
3 void master_cleanup (void);
4 void cleanup_stuff (void *arg);
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 *context_loop (struct CitContext *con);
26 void deallocate_user_data(struct CitContext *con);
27 void *CtdlGetUserData(unsigned long requested_sym);
28 void CtdlAllocUserData(unsigned long requested_sym, size_t num_bytes);
29 int CtdlGetDynamicSymbol(void);
30 void enter_housekeeping_cmd(char *);
31 void GenerateRoomDisplay(char *real_room,
32                         struct CitContext *viewed,
33                         struct CitContext *viewer);
34
35
36 extern int do_defrag;