Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / lib / csa / cmxdr.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: cmxdr.h /main/1 1996/04/21 19:22:17 drk $ */
24 /*
25  *  (c) Copyright 1993, 1994 Hewlett-Packard Company
26  *  (c) Copyright 1993, 1994 International Business Machines Corp.
27  *  (c) Copyright 1993, 1994 Novell, Inc.
28  *  (c) Copyright 1993, 1994 Sun Microsystems, Inc.
29  */
30
31 #ifndef _CMXDR_H
32 #define _CMXDR_H
33
34 #include <EUSCompat.h>
35 #include "ansi_c.h"
36 #include "csa.h"
37
38 /*
39  * xdr routines for xapia csa data structures
40  */
41
42 bool_t xdr_CSA_extension P((XDR *xdrs, CSA_extension *objp));
43
44 bool_t xdr_CSA_date_time_entry P((XDR *xdrs, CSA_date_time_entry *objp));
45
46 bool_t xdr_CSA_date_time_list P((XDR *xdrs, CSA_date_time_list *objp));
47
48 bool_t xdr_CSA_calendar_user P((XDR *xdrs, CSA_calendar_user *objp));
49
50 bool_t xdr_CSA_access_rights P((XDR *xdrs, CSA_access_rights *objp));
51
52 bool_t xdr_CSA_access_list P((XDR *xdrs, CSA_access_list *objp));
53
54 bool_t xdr_CSA_attendee P((XDR *xdrs, CSA_attendee *objp));
55
56 bool_t xdr_CSA_attendee_list P((XDR *xdrs, CSA_attendee_list *objp));
57
58 bool_t xdr_CSA_opaque_data P((XDR *xdrs, CSA_opaque_data *objp));
59
60 bool_t xdr_CSA_reminder P((XDR *xdrs, CSA_reminder *objp));
61
62 bool_t xdr_CSA_attribute_value P((XDR *xdrs, CSA_attribute_value *objp));
63
64 #endif
65