appt4.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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: appt4.h /main/1 1996/04/21 19:21:37 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 _APPT4_H
  31. #define _APPT4_H
  32. /*
  33. * this file contains allocate and free routines for v4 data structures
  34. */
  35. #include "rtable4.h"
  36. #include "ansi_c.h"
  37. extern Appt_4 *_DtCm_make_appt4();
  38. extern Appt_4 *_DtCm_copy_one_appt4(Appt_4 *a4);
  39. extern Appt_4 *_DtCm_copy_appt4(Appt_4 *a4);
  40. extern Appt_4 *_DtCm_copy_semiprivate_appt4(Appt_4 *original);
  41. extern Except_4 *_DtCm_copy_excpt4(Except_4 *e4);
  42. extern Abb_Appt_4 *_DtCm_appt_to_abbrev4(Appt_4 *original);
  43. extern Abb_Appt_4 *_DtCm_appt_to_semiprivate_abbrev4(Appt_4 *original);
  44. extern void _DtCm_free_appt4(Appt_4 *a);
  45. extern void _DtCm_free_abbrev_appt4(Abb_Appt_4 *a);
  46. extern Attribute_4 * _DtCm_make_attr4();
  47. extern void _DtCm_free_attr4(Attribute_4 *a);
  48. extern Reminder_4 *_DtCm_copy_reminder4(Reminder_4 *r4);
  49. extern void _DtCm_free_reminder4(Reminder_4 *r);
  50. extern void _DtCm_free_keyentry4(Uid_4 *k);
  51. extern Access_Entry_4 *_DtCm_make_access_entry4(char *who, int perms);
  52. extern Access_Entry_4 *_DtCm_copy_access_list4(Access_Entry_4 *l4);
  53. extern void _DtCm_free_access_list4(Access_Entry_4 *l);
  54. extern void _DtCm_free_excpt4(Except_4 *e);
  55. extern char * _DtCm_get_default_what_string();
  56. #endif