Actually encrypt passwords before storing them
[claws.git] / src / plugins / vcalendar / libical / libical / icalattendee.h
1 /* -*- Mode: C -*- */
2 /*======================================================================
3  FILE: icalattendee.h
4  CREATOR: eric 8 Mar 01
5
6
7  (C) COPYRIGHT 2000, Eric Busboom, http://www.softwarestudio.org
8
9  This program is free software; you can redistribute it and/or modify
10  it under the terms of either: 
11
12     The LGPL as published by the Free Software Foundation, version
13     2.1, available at: http://www.fsf.org/copyleft/lesser.html
14
15   Or:
16
17     The Mozilla Public License Version 1.0. You may obtain a copy of
18     the License at http://www.mozilla.org/MPL/
19
20   The original code is icaltypes.h
21
22 ======================================================================*/
23
24 #ifndef ICALATTENDEE_H
25 #define ICALATTENDEE_H
26
27 #include <time.h>
28 #include "icalenums.h"
29 #include "icaltime.h"
30 #include "icalduration.h"
31 #include "icalperiod.h"
32 #include "icalderivedparameter.h"
33 #include "icalderivedvalue.h"
34
35 struct icalorganizertype {
36     const char* value;
37     const char* common_name;
38     const char* dir;
39     const char* sentby;
40     const char* language;
41
42 };
43
44 /* Create a copy of the given organizer. Libical will not own the
45    memory for the strings in the copy; the call must free them */
46 struct icalorganizertype icalorganizertype_new_clone(struct icalorganizertype a);
47
48
49 struct icalattendeetype {
50     const char* cuid; /* Cal user id, contents of the property value */
51     /*icalparameter_cutype cutype;*/
52     const char* member;
53     /*icalparameter_role role;*/
54     int rsvp;
55     const char* delto;
56     const char* delfrom;
57     const char* sentby;
58     const char* cn;
59     const char* dir;
60     const char* language;
61 };
62
63 /* Create a copy of the given attendee. Libical will not own the
64    memory for the strings in the copy; the call must free them */
65 struct icalattendeetype icalattendeetype_new_clone(struct icalattendeetype a);
66
67
68 #endif /* !ICALATTENDEE_H */