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
02e2dcdd
...
02e2dcdda251cc4d3dbe2df78043962a22661e96
authored
2007-03-07 19:52:24 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mu_assoc_create): Add third argument.
(mu_assoc_destroy,mu_assoc_clear): New functions
1 parent
44d6721e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
include/mailutils/assoc.h
include/mailutils/assoc.h
View file @
02e2dcd
...
...
@@ -25,9 +25,14 @@ extern "C" {
#include <mailutils/types.h>
#define MU_ASSOC_COPY_KEY 0x01
#define MU_ASSOC_ICASE 0x02
typedef
void
(
*
mu_assoc_free_fn
)
(
void
*
data
);
int
mu_assoc_create
(
mu_assoc_t
*
passoc
,
size_t
elsize
);
int
mu_assoc_create
(
mu_assoc_t
*
passoc
,
size_t
elsize
,
int
flags
);
void
mu_assoc_destroy
(
mu_assoc_t
*
passoc
);
void
mu_assoc_clear
(
mu_assoc_t
assoc
);
void
*
mu_assoc_ref
(
mu_assoc_t
assoc
,
const
char
*
name
);
int
mu_assoc_install
(
mu_assoc_t
assoc
,
const
char
*
name
,
void
*
value
);
int
mu_assoc_ref_install
(
mu_assoc_t
assoc
,
const
char
*
name
,
void
**
pval
);
...
...
Please
register
or
sign in
to post a comment