Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
d81db5ae
...
d81db5aec3ccb49aa16fe5a867c18e382b4c10ba
authored
2002-01-21 15:02:38 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Added proto for mu_process_mailbox.
1 parent
de42777f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
libmu_scm/mu_scm.h
libmu_scm/mu_scm.h
View file @
d81db5a
...
...
@@ -37,6 +37,19 @@
#include <libguile.h>
typedef
struct
{
int
debug_guile
;
mailbox_t
mbox
;
char
*
user_name
;
int
(
*
init
)
__P
((
void
*
data
));
SCM
(
*
catch_body
)
__P
((
void
*
data
,
mailbox_t
mbox
));
SCM
(
*
catch_handler
)
__P
((
void
*
data
,
SCM
tag
,
SCM
throw_args
));
int
(
*
next
)
__P
((
void
*
data
,
mailbox_t
mbox
));
int
(
*
exit
)
__P
((
void
*
data
,
mailbox_t
mbox
));
void
*
data
;
}
guimb_param_t
;
extern
SCM
_mu_scm_mailer
;
extern
SCM
_mu_scm_debug
;
...
...
@@ -64,3 +77,5 @@ extern SCM mu_port_make_from_stream __P((SCM msg, stream_t stream, long mode));
extern
void
mu_scm_mime_init
__P
((
void
));
extern
void
mu_scm_message_add_owner
__P
((
SCM
MESG
,
SCM
owner
));
extern
void
mu_process_mailbox
__P
((
int
argc
,
char
*
argv
[],
guimb_param_t
*
param
));
...
...
Please
register
or
sign in
to post a comment