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
82f02ef3
...
82f02ef3dc63650489f97887a3c85d26a7d41bc3
authored
2002-12-31 02:56:30 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Use __PMT in nested declarations for C++ compatibility.
1 parent
928dc7dc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
8 deletions
include/mailutils/attribute.h
include/mailutils/auth.h
include/mailutils/attribute.h
View file @
82f02ef
...
...
@@ -83,11 +83,11 @@ extern int attribute_set_flags __P ((attribute_t, int));
extern
int
attribute_unset_flags
__P
((
attribute_t
,
int
));
extern
int
attribute_set_set_flags
__P
((
attribute_t
,
int
(
*
_set_flags
)
__P
((
attribute_t
,
int
)),
void
*
));
__P
MT
((
attribute_t
,
int
)),
void
*
));
extern
int
attribute_set_unset_flags
__P
((
attribute_t
,
int
(
*
_unset_flags
)
__P
((
attribute_t
,
int
)),
void
*
));
__P
MT
((
attribute_t
,
int
)),
void
*
));
extern
int
attribute_set_get_flags
__P
((
attribute_t
,
int
(
*
_get_flags
)
__P
((
attribute_t
,
int
*
)),
void
*
));
__P
MT
((
attribute_t
,
int
*
)),
void
*
));
extern
int
attribute_is_equal
__P
((
attribute_t
,
attribute_t
att2
));
extern
int
attribute_copy
__P
((
attribute_t
,
attribute_t
));
...
...
include/mailutils/auth.h
View file @
82f02ef
...
...
@@ -27,11 +27,11 @@ extern "C" {
extern
int
ticket_create
__P
((
ticket_t
*
,
void
*
owner
));
extern
void
ticket_destroy
__P
((
ticket_t
*
,
void
*
owner
));
extern
int
ticket_set_destroy
__P
((
ticket_t
,
void
(
*
)
__P
((
ticket_t
)),
void
*
owner
));
__P
MT
((
ticket_t
)),
void
*
owner
));
extern
void
*
ticket_get_owner
__P
((
ticket_t
));
extern
int
ticket_set_pop
__P
((
ticket_t
,
int
(
*
_pop
)
__P
((
ticket_t
,
url_t
,
const
char
*
,
char
**
)),
void
*
));
__P
MT
((
ticket_t
,
url_t
,
const
char
*
,
char
**
)),
void
*
));
extern
int
ticket_pop
__P
((
ticket_t
,
url_t
,
const
char
*
,
char
**
));
extern
int
ticket_set_data
__P
((
ticket_t
,
void
*
,
void
*
owner
));
extern
int
ticket_get_data
__P
((
ticket_t
,
void
**
));
...
...
@@ -42,7 +42,8 @@ extern void *authority_get_owner __P ((authority_t));
extern
int
authority_set_ticket
__P
((
authority_t
,
ticket_t
));
extern
int
authority_get_ticket
__P
((
authority_t
,
ticket_t
*
));
extern
int
authority_authenticate
__P
((
authority_t
));
extern
int
authority_set_authenticate
__P
((
authority_t
,
int
(
*
_authenticate
)
__P
((
authority_t
)),
void
*
));
extern
int
authority_set_authenticate
__P
((
authority_t
,
int
(
*
_authenticate
)
__PMT
((
authority_t
)),
void
*
));
extern
int
authority_create_null
__P
((
authority_t
*
pauthority
,
void
*
owner
));
...
...
@@ -51,8 +52,8 @@ extern void wicket_destroy __P ((wicket_t *));
extern
int
wicket_set_filename
__P
((
wicket_t
,
const
char
*
));
extern
int
wicket_get_filename
__P
((
wicket_t
,
char
*
,
size_t
,
size_t
*
));
extern
int
wicket_set_ticket
__P
((
wicket_t
,
int
(
*
)
__P
((
wicket_t
,
const
char
*
,
const
char
*
,
ticket_t
*
))));
__P
MT
((
wicket_t
,
const
char
*
,
const
char
*
,
ticket_t
*
))));
extern
int
wicket_get_ticket
__P
((
wicket_t
,
ticket_t
*
,
const
char
*
,
const
char
*
));
#ifdef __cplusplus
...
...
Please
register
or
sign in
to post a comment