More removal of $Id$ tags
[citadel.git] / citadel / textclient / messages.h
1
2 #define MAXURLS         50      /* Max embedded URL's per message */
3 extern int num_urls;
4 extern char urls[MAXURLS][SIZ];
5
6 int ka_system(char *shc);
7 int entmsg(CtdlIPC *ipc, int is_reply, int c, int masquerade);
8 void readmsgs(CtdlIPC *ipc, enum MessageList c, enum MessageDirection rdir, int q);
9 void edit_system_message(CtdlIPC *ipc, char *which_message);
10 pid_t ka_wait(int *kstatus);
11 void list_urls(CtdlIPC *ipc);
12 void check_message_base(CtdlIPC *ipc);
13 int client_make_message(CtdlIPC *ipc,
14                                                 char *filename,         /* temporary file name */
15                                                 char *recipient,        /* NULL if it's not mail */
16                                                 int anon_type,          /* see MES_ types in header file */
17                                                 int format_type,
18                                                 int mode,
19                                                 char *subject,
20                                                 int subject_required);
21 void citedit(FILE *);
22 char *load_message_from_file(FILE *src);
23 int file_checksum(char *filename);