summaryrefslogtreecommitdiffabout
path: root/libical/src/libical/icalmime.h
Unidiff
Diffstat (limited to 'libical/src/libical/icalmime.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libical/src/libical/icalmime.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/libical/src/libical/icalmime.h b/libical/src/libical/icalmime.h
new file mode 100644
index 0000000..b222888
--- a/dev/null
+++ b/libical/src/libical/icalmime.h
@@ -0,0 +1,43 @@
1/* -*- Mode: C -*- */
2/*======================================================================
3 FILE: icalmime.h
4 CREATOR: eric 26 July 2000
5
6
7 $Id$
8 $Locker$
9
10 (C) COPYRIGHT 2000, Eric Busboom, http://www.softwarestudio.org
11
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of either:
14
15 The LGPL as published by the Free Software Foundation, version
16 2.1, available at: http://www.fsf.org/copyleft/lesser.html
17
18 Or:
19
20 The Mozilla Public License Version 1.0. You may obtain a copy of
21 the License at http://www.mozilla.org/MPL/
22
23======================================================================*/
24
25#ifndef ICALMIME_H
26#define ICALMIME_H
27
28#include "icalcomponent.h"
29#include "icalparser.h"
30
31 icalcomponent* icalmime_parse(char* (*line_gen_func)(char *s, size_t size,
32 void *d),
33 void *data);
34
35/* The inverse of icalmime_parse, not implemented yet. Use sspm.h directly. */
36char* icalmime_as_mime_string(char* component);
37
38
39
40#endif /* !ICALMIME_H */
41
42
43