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
d8014c1e
...
d8014c1e72c664743f0a20f4011628e09e5004f8
authored
2003-02-24 04:48:39 +0000
by
Alain Magloire
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Define the mailcap structure in types.h
and include <types.h> in mailcap.h
1 parent
314b9945
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
7 deletions
include/mailutils/mailcap.h
include/mailutils/types.h
include/mailutils/mailcap.h
View file @
d8014c1
...
...
@@ -18,17 +18,11 @@
#ifndef _MAILUTILS_MAILCAP_H
#define _MAILUTILS_MAILCAP_H
#include <mailutils/
stream
.h>
#include <mailutils/
types
.h>
#include <mailutils/errno.h>
/* See RFC1524 (A User Agent Configuration Mechanism). */
struct
_mu_mailcap
;
struct
_mu_mailcap_entry
;
typedef
struct
_mu_mailcap
*
mu_mailcap_t
;
typedef
struct
_mu_mailcap_entry
*
mu_mailcap_entry_t
;
/* Create a mailcap from stream. */
int
mu_mailcap_create
(
mu_mailcap_t
*
mailcap
,
stream_t
stream
);
...
...
include/mailutils/types.h
View file @
d8014c1
...
...
@@ -57,6 +57,8 @@ struct _mailbox;
struct
_mailer
;
struct
_message
;
struct
_mime
;
struct
_mu_mailcap
;
struct
_mu_mailcap_entry
;
struct
_observable
;
struct
_observer
;
struct
_property
;
...
...
@@ -83,6 +85,8 @@ typedef struct _mailbox *mailbox_t;
typedef
struct
_mailer
*
mailer_t
;
typedef
struct
_message
*
message_t
;
typedef
struct
_mime
*
mime_t
;
typedef
struct
_mu_mailcap
*
mu_mailcap_t
;
typedef
struct
_mu_mailcap_entry
*
mu_mailcap_entry_t
;
typedef
struct
_observable
*
observable_t
;
typedef
struct
_observer
*
observer_t
;
typedef
struct
_property
*
property_t
;
...
...
Please
register
or
sign in
to post a comment