1 /* -*- Mode: C -*- */
2 /*======================================================================
3  FILE: icalmime.h
4  CREATOR: eric 26 July 2000
5 
6 
7  $Id: icalmime.h,v 1.3 2008-01-15 23:17:40 dothebart Exp $
8  $Locker:  $
9 
10  (C) COPYRIGHT 2000, Eric Busboom <eric@softwarestudio.org>
11      http://www.softwarestudio.org
12 
13  This program is free software; you can redistribute it and/or modify
14  it under the terms of either:
15 
16     The LGPL as published by the Free Software Foundation, version
17     2.1, available at: http://www.fsf.org/copyleft/lesser.html
18 
19   Or:
20 
21     The Mozilla Public License Version 1.0. You may obtain a copy of
22     the License at http://www.mozilla.org/MPL/
23 
24 ======================================================================*/
25 
26 #ifndef ICALMIME_H
27 #define ICALMIME_H
28 
29 #include "icalcomponent.h"
30 #include "icalparser.h"
31 
32 icalcomponent* icalmime_parse(	char* (*line_gen_func)(char *s, size_t size,
33 						       void *d),
34 				void *data);
35 
36 /* The inverse of icalmime_parse, not implemented yet. Use sspm.h directly.  */
37 char* icalmime_as_mime_string(char* component);
38 
39 
40 
41 #endif /* !ICALMIME_H */
42 
43 
44 
45