Initial import of the CDE 2.1.30 sources from the Open Group.
[oweals/cde.git] / cde / lib / csa / free.h
1 /* $XConsortium: free.h /main/1 1996/04/21 19:23:19 drk $ */
2 /*
3  *  (c) Copyright 1993, 1994 Hewlett-Packard Company
4  *  (c) Copyright 1993, 1994 International Business Machines Corp.
5  *  (c) Copyright 1993, 1994 Novell, Inc.
6  *  (c) Copyright 1993, 1994 Sun Microsystems, Inc.
7  */
8
9 #ifndef _FREE_H
10 #define _FREE_H
11
12 #include <EUSCompat.h>
13 #include "ansi_c.h"
14
15 extern CSA_calendar_user *_DtCm_alloc_calendar_users(uint num_elem);
16
17 extern char **_DtCm_alloc_character_pointers(uint num_elem);
18
19 extern CSA_attribute *_DtCm_alloc_attributes(uint num_elem);
20
21 extern CSA_entry_handle *_DtCm_alloc_entry_handles(uint num_elem);
22
23 extern CSA_reminder_reference *_DtCm_alloc_reminder_references(uint num_elem);
24
25 extern void *_DtCm_alloc_entry();
26
27 extern CSA_return_code _DtCm_free(void *ptr);
28
29 extern void _DtCm_free_character_pointers P((uint num_elem, void *vptr));
30
31 #endif
32