summaryrefslogtreecommitdiffstats
path: root/meta/packages/xorg-lib/xorg-headers-native/X11/VarargsI.h
diff options
context:
space:
mode:
Diffstat (limited to 'meta/packages/xorg-lib/xorg-headers-native/X11/VarargsI.h')
-rw-r--r--meta/packages/xorg-lib/xorg-headers-native/X11/VarargsI.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/meta/packages/xorg-lib/xorg-headers-native/X11/VarargsI.h b/meta/packages/xorg-lib/xorg-headers-native/X11/VarargsI.h
new file mode 100644
index 0000000000..e15404aab5
--- /dev/null
+++ b/meta/packages/xorg-lib/xorg-headers-native/X11/VarargsI.h
@@ -0,0 +1,65 @@
1/* $Xorg: VarargsI.h,v 1.4 2001/02/09 02:03:59 xorgcvs Exp $ */
2
3/*
4
5Copyright 1985, 1986, 1987, 1988, 1989, 1998 The Open Group
6
7Permission to use, copy, modify, distribute, and sell this software and its
8documentation for any purpose is hereby granted without fee, provided that
9the above copyright notice appear in all copies and that both that
10copyright notice and this permission notice appear in supporting
11documentation.
12
13The above copyright notice and this permission notice shall be included in
14all copies or substantial portions of the Software.
15
16THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
20AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
23Except as contained in this notice, the name of The Open Group shall not be
24used in advertising or otherwise to promote the sale, use or other dealings
25in this Software without prior written authorization from The Open Group.
26
27*/
28/* $XFree86: xc/lib/Xt/VarargsI.h,v 3.6 2001/12/14 19:56:32 dawes Exp $ */
29
30#ifndef _VarargsI_h_
31#define _VarargsI_h_
32
33#include <stdarg.h>
34
35/* private routines */
36
37extern void _XtCountVaList(
38 va_list /*var*/, int* /*total_count*/, int* /*typed_count*/
39);
40
41extern void _XtVaToArgList(
42 Widget /*widget*/, va_list /*var*/, int /*max_count*/, ArgList* /*args_return*/, Cardinal* /*num_args_return*/
43);
44
45extern void _XtVaToTypedArgList(
46 va_list /*var*/, int /*count*/, XtTypedArgList* /*args_return*/, Cardinal* /*num_args_return*/
47);
48
49extern XtTypedArgList _XtVaCreateTypedArgList(
50 va_list /*var*/, int /*count*/
51);
52
53extern void _XtFreeArgList(
54 ArgList /*args*/, int /*total_count*/, int /*typed_count*/
55);
56
57extern void _XtGetApplicationResources(
58 Widget /*w*/, XtPointer /*base*/, XtResourceList /*resources*/, Cardinal /*num_resources*/, ArgList /*args*/, Cardinal /*num_args*/, XtTypedArgList /*typed_args*/, Cardinal /*num_typed_args*/
59);
60
61extern void _XtGetSubresources(
62 Widget /*w*/, XtPointer /*base*/, const char* /*name*/, const char* /*class*/, XtResourceList /*resources*/, Cardinal /*num_resources*/, ArgList /*args*/, Cardinal /*num_args*/, XtTypedArgList /*typed_args*/, Cardinal /*num_typed_args*/
63);
64
65#endif /* _VarargsI_h_ */