Guimb prototypes.
Showing
1 changed file
with
48 additions
and
0 deletions
guimb/guimb.h
0 → 100644
1 | /* GNU mailutils - a suite of utilities for electronic mail | ||
2 | Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. | ||
3 | |||
4 | This program is free software; you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation; either version 2, or (at your option) | ||
7 | any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program; if not, write to the Free Software | ||
16 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ | ||
17 | |||
18 | #if defined(HAVE_CONFIG_H) | ||
19 | # include <config.h> | ||
20 | #endif | ||
21 | #include <stdlib.h> | ||
22 | #include <stdio.h> | ||
23 | #include <unistd.h> | ||
24 | #include <errno.h> | ||
25 | |||
26 | #include <mailutils/mailbox.h> | ||
27 | #include <mailutils/message.h> | ||
28 | #include <mailutils/header.h> | ||
29 | #include <mailutils/body.h> | ||
30 | #include <mailutils/registrar.h> | ||
31 | #include <mailutils/error.h> | ||
32 | #include <mailutils/address.h> | ||
33 | #include <mailutils/registrar.h> | ||
34 | |||
35 | #include <libguile.h> | ||
36 | |||
37 | extern char *program_file; | ||
38 | extern char *program_expr; | ||
39 | extern mailbox_t mbox; | ||
40 | extern size_t nmesg; | ||
41 | extern size_t current_mesg_no; | ||
42 | extern message_t current_message; | ||
43 | extern int debug_guile; | ||
44 | |||
45 | void collect_open_mailbox_file __P ((void)); | ||
46 | int collect_append_file __P ((char *name)); | ||
47 | void collect_create_mailbox __P ((void)); | ||
48 | void collect_drop_mailbox __P ((void)); |
-
Please register or sign in to post a comment