Drop main() prototype. Syncs with NetBSD-8
[minix.git] / external / mit / xorg / tools / xkbcomp / xkbcomp-stubs.c
blob5691099ceafd9228f14614a486a7b78ac89e769b
1 /* $NetBSD: xkbcomp-stubs.c,v 1.2 2013/05/30 23:42:20 mrg Exp $ */
3 /*-
4 * Copyright (c) 2003-2004 The NetBSD Foundation, Inc.
5 * All rights reserved.
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Luke Mewburn.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the NetBSD
21 * Foundation, Inc. and its contributors.
22 * 4. Neither the name of The NetBSD Foundation nor the names of its
23 * contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
26 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 * POSSIBILITY OF SUCH DAMAGE.
39 #include <stdio.h>
41 #include "Xlibint.h"
42 #include "Xlcint.h"
43 #include "XKBlibint.h"
44 #include <X11/extensions/XKBfile.h>
46 Display *
47 XOpenDisplay(const char *display)
49 return NULL;
52 int
53 XCloseDisplay(Display *dpy)
55 return 0;
58 int (*
59 XSynchronize(Display *dpy, int onoff))()
61 return NULL;
64 XrmMethods
65 _XrmInitParseInfo(XPointer *state)
67 return NULL;
70 int
71 XGetErrorText(Display *dpy, int code, char *buffer, int nbytes)
73 return 0;
77 char *
78 XGetAtomName(Display *dpy, Atom atom)
80 return NULL;
83 Atom
84 XInternAtom(Display *dpy, const char *name, Bool onlyIfExists)
86 return None;
89 XkbDescPtr
90 XkbGetMap(Display *dpy,unsigned which,unsigned deviceSpec)
92 return NULL;
95 Status
96 XkbGetIndicatorMap(Display *dpy,unsigned long which,XkbDescPtr xkb)
98 return BadValue;
101 Status
102 XkbGetControls(Display *dpy, unsigned long which, XkbDescPtr xkb)
104 return BadValue;
107 Status
108 XkbGetCompatMap(Display *dpy,unsigned which,XkbDescPtr xkb)
110 return BadValue;
113 Status
114 XkbGetNames(Display *dpy,unsigned which,XkbDescPtr xkb)
116 return BadValue;
119 Status
120 XkbChangeKbdDisplay(Display *newDpy,XkbFileInfo *result)
122 return BadValue;
125 Bool
126 XkbWriteToServer(XkbFileInfo *result)
128 return False;
131 void
132 _XFlush(Display *dpy)
136 Bool
137 XkbUseExtension(Display *dpy,int *major_rtrn,int *minor_rtrn)
139 return False;
142 Status
143 _XReply(Display *dpy, xReply *rep, int extra, Bool discard)
145 return False;
149 _XRead(Display *dpy, char *data, long size)
151 return 0;
154 void *
155 _XGetRequest(Display *dpy, CARD8 type, size_t len)
157 return NULL;
160 #if defined(__minix) && defined(XTHREADS)
161 void (*_XCreateMutex_fn)(LockInfoPtr) = NULL;
162 void (**_XFreeMutex_fn_p)(LockInfoPtr) = &_XFreeMutex_fn;
164 void (*_XFreeMutex_fn)(LockInfoPtr) = NULL;
165 void (**_XCreateMutex_fn_p)(LockInfoPtr) = &_XCreateMutex_fn;
167 LockInfoPtr _Xglobal_lock = NULL;
168 LockInfoPtr *_Xglobal_lock_p = &_Xglobal_lock;
170 void (*_XLockMutex_fn)(
171 LockInfoPtr /* lock */
172 #if defined(XTHREADS_WARN) || defined(XTHREADS_FILE_LINE)
173 , char * /* file */
174 , int /* line */
175 #endif
176 ) = NULL;
177 void (*_XUnlockMutex_fn)(
178 LockInfoPtr /* lock */
179 #if defined(XTHREADS_WARN) || defined(XTHREADS_FILE_LINE)
180 , char * /* file */
181 , int /* line */
182 #endif
183 ) = NULL;
184 #endif /* defined(__minix) && defined(XTHREADS) */