cmxdr.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 libraries 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. #ifndef _CMXDR_H
  31. #define _CMXDR_H
  32. #include <EUSCompat.h>
  33. #include "ansi_c.h"
  34. #include "csa.h"
  35. /*
  36. * xdr routines for xapia csa data structures
  37. */
  38. bool_t xdr_CSA_extension P((XDR *xdrs, CSA_extension *objp));
  39. bool_t xdr_CSA_date_time_entry P((XDR *xdrs, CSA_date_time_entry *objp));
  40. bool_t xdr_CSA_date_time_list P((XDR *xdrs, CSA_date_time_list *objp));
  41. bool_t xdr_CSA_calendar_user P((XDR *xdrs, CSA_calendar_user *objp));
  42. bool_t xdr_CSA_access_rights P((XDR *xdrs, CSA_access_rights *objp));
  43. bool_t xdr_CSA_access_list P((XDR *xdrs, CSA_access_list *objp));
  44. bool_t xdr_CSA_attendee P((XDR *xdrs, CSA_attendee *objp));
  45. bool_t xdr_CSA_attendee_list P((XDR *xdrs, CSA_attendee_list *objp));
  46. bool_t xdr_CSA_opaque_data P((XDR *xdrs, CSA_opaque_data *objp));
  47. bool_t xdr_CSA_reminder P((XDR *xdrs, CSA_reminder *objp));
  48. bool_t xdr_CSA_attribute_value P((XDR *xdrs, CSA_attribute_value *objp));
  49. #endif