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
b32a8225
...
b32a82258bf276462baf6b864099c9d955c8d38e
authored
2001-06-16 13:56:54 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Added missing declarations
1 parent
a1a54fce
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletions
imap4d/imap4d.h
imap4d/imap4d.h
View file @
b32a822
...
...
@@ -171,6 +171,7 @@ extern int imap4d_rename __P ((struct imap4d_command *, char *));
extern
int
imap4d_search
__P
((
struct
imap4d_command
*
,
char
*
));
extern
int
imap4d_select
__P
((
struct
imap4d_command
*
,
char
*
));
extern
int
imap4d_select0
__P
((
struct
imap4d_command
*
,
char
*
,
int
));
extern
void
imap4d_select_status
__P
((
void
));
extern
int
imap4d_status
__P
((
struct
imap4d_command
*
,
char
*
));
extern
int
imap4d_store
__P
((
struct
imap4d_command
*
,
char
*
));
extern
int
imap4d_store0
__P
((
char
*
,
int
,
char
*
,
size_t
));
...
...
@@ -179,7 +180,7 @@ extern int imap4d_uid __P ((struct imap4d_command *, char *));
extern
int
imap4d_unsubscribe
__P
((
struct
imap4d_command
*
,
char
*
));
extern
int
imap4d_namespace
__P
((
struct
imap4d_command
*
,
char
*
));
/* Synchronisation on simult
en
ous access. */
/* Synchronisation on simult
ane
ous access. */
extern
int
imap4d_sync
__P
((
void
));
extern
int
imap4d_sync_flags
__P
((
size_t
));
extern
size_t
uid_to_msgno
__P
((
size_t
));
...
...
@@ -189,6 +190,11 @@ extern RETSIGTYPE imap4d_sigchld __P ((int));
extern
RETSIGTYPE
imap4d_signal
__P
((
int
));
extern
int
imap4d_bye
__P
((
int
));
/* Namespace functions */
extern
char
*
namespace_getfullpath
__P
((
char
*
name
,
const
char
*
delim
));
extern
char
*
namespace_checkfullpath
__P
((
char
*
name
,
const
char
*
pattern
,
const
char
*
delim
));
/* Helper functions. */
extern
int
util_out
__P
((
int
,
const
char
*
,
...));
extern
int
util_send
__P
((
const
char
*
,
...));
...
...
@@ -214,6 +220,7 @@ extern int util_parse_internal_date __P((char *date, time_t *timep));
extern
int
util_parse_822_date
__P
((
char
*
date
,
time_t
*
timep
));
extern
int
util_parse_ctime_date
__P
((
char
*
date
,
time_t
*
timep
));
extern
char
*
util_strcasestr
__P
((
const
char
*
haystack
,
const
char
*
needle
));
extern
char
*
util_normalize_path
(
char
*
path
,
const
char
*
delim
);
#ifdef __cplusplus
}
...
...
Please
register
or
sign in
to post a comment