dtinfo: Fix coverity warning related to using delete not delete []
[oweals/cde.git] / cde / programs / dtpdm / PdmXp.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: PdmXp.h /main/4 1996/08/12 18:43:09 cde-hp $ */
24 /*
25  * dtpdm/PdmXp.h
26  */
27 /*
28  * (c) Copyright 1996 Digital Equipment Corporation.
29  * (c) Copyright 1996 Hewlett-Packard Company.
30  * (c) Copyright 1996 International Business Machines Corp.
31  * (c) Copyright 1996 Sun Microsystems, Inc.
32  * (c) Copyright 1996 Novell, Inc. 
33  * (c) Copyright 1996 FUJITSU LIMITED.
34  * (c) Copyright 1996 Hitachi.
35  */
36 #ifndef _PdmXp_h
37 #define _PdmXp_h
38
39 #if 0 && defined(PRINTING_SUPPORTED)
40 #include <X11/extensions/Print.h>
41 #endif /* PRINTING_SUPPORTED */
42
43 #include "PdmOid.h"
44
45 #define PDMXP_POOL_COUNT 4
46
47 /*
48  * PdmXp instance structure
49  */
50 typedef struct _PdmXp
51 {
52     /*
53      * print server connection info
54      */
55     Display* display;
56 #if 0 && defined(PRINTING_SUPPORTED)
57     XPContext context;
58 #endif /* PRINTING_SUPPORTED */
59     /*
60      * printing attribute pools
61      */
62     XrmDatabase pool[PDMXP_POOL_COUNT];
63     /*
64      * qualifier for retrieving attributes
65      */
66     char* qualifier;
67     int qualifier_len;
68     
69 } PdmXp;
70
71 /*
72  * PdmXp public methods
73  */
74 extern PdmXp* PdmXpNew();
75 extern Display* PdmXpOpen(PdmXp* me,
76                           char* display_spec,
77                           char* context_str);
78 extern void PdmXpClose(PdmXp* me);
79 extern void PdmXpDelete(PdmXp* me);
80 #if 0 && defined(PRINTING_SUPPORTED)
81 extern PdmOid PdmXpGetValue(PdmXp* me,
82                             XPAttributes type,
83                             PdmOid id_att);
84 extern const char* PdmXpGetStringValue(PdmXp* me,
85                                        XPAttributes type,
86                                        PdmOid id_att);
87 extern void PdmXpSetValue(PdmXp* me,
88                           XPAttributes type,
89                           PdmOid id_att,
90                           PdmOid id_val);
91 extern void PdmXpSetStringValue(PdmXp* me,
92                                 XPAttributes type,
93                                 PdmOid id_att,
94                                 const char* str_val);
95 #endif /* PRINTING_SUPPORTED */
96 extern void PdmXpUpdateAttributes(PdmXp* me);
97
98
99 #endif /* _PdmXp_h */