a34417acc6379c409477c9ee9a3f16f38d803194
[framework/uifw/xorg/lib/libxkbfile.git] / src / xkberrs.c
1 /************************************************************
2  Copyright (c) 1994 by Silicon Graphics Computer Systems, Inc.
3
4  Permission to use, copy, modify, and distribute this
5  software and its documentation for any purpose and without
6  fee is hereby granted, provided that the above copyright
7  notice appear in all copies and that both that copyright
8  notice and this permission notice appear in supporting
9  documentation, and that the name of Silicon Graphics not be
10  used in advertising or publicity pertaining to distribution
11  of the software without specific prior written permission.
12  Silicon Graphics makes no representation about the suitability
13  of this software for any purpose. It is provided "as is"
14  without any express or implied warranty.
15
16  SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
17  SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
18  AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON
19  GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
20  DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
21  DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
22  OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION  WITH
23  THE USE OR PERFORMANCE OF THIS SOFTWARE.
24
25  ********************************************************/
26
27 #ifdef HAVE_DIX_CONFIG_H
28 #include <dix-config.h>
29 #elif defined(HAVE_CONFIG_H)
30 #include <config.h>
31 #endif
32
33 #include <stdio.h>
34 #include <ctype.h>
35 #include <stdlib.h>
36
37 #include <X11/Xproto.h>
38 #include <X11/Xlib.h>
39 #include <X11/Xos.h>
40 #include <X11/Xfuncs.h>
41 #include <X11/XKBlib.h>
42 #include <X11/extensions/XKBfile.h>
43
44 char *          _XkbErrMessages[] = {
45         "success",                              /* _XkbSuccess               */
46         "key names not defined",                /* _XkbErrMissingNames       */
47         "key types not defined",                /* _XkbErrMissingTypes       */
48         "required key types not present",       /* _XkbErrMissingReqTypes    */
49         "symbols not defined",                  /* _XkbErrMissingSymbols     */
50         "virtual modifier bindings not defined",/* _XkbErrMissingVMods       */
51         "indicators not defined",               /* _XkbErrMissingIndicators  */
52         "compatibility map not defined",        /* _XkbErrMissingCompatMap   */
53         "symbol interpretations not defined",   /* _XkbErrMissingSymInterps  */
54         "geometry not defined",                 /* _XkbErrMissingGeometry    */
55         "illegal doodad type",                  /* _XkbErrIllegalDoodad      */
56         "illegal TOC type",                     /* _XkbErrIllegalTOCType     */
57         "illegal contents",                     /* _XkbErrIllegalContents    */
58         "empty file",                           /* _XkbErrEmptyFile          */
59         "file not found",                       /* _XkbErrFileNotFound       */
60         "cannot open",                          /* _XkbErrFileCannotOpen     */
61         "bad value",                            /* _XkbErrBadValue           */
62         "bad match",                            /* _XkbErrBadMatch           */
63         "illegal name for type",                /* _XkbErrBadTypeName        */
64         "illegal width for type",               /* _XkbErrBadTypeWidth       */
65         "bad file type",                        /* _XkbErrBadFileType        */
66         "bad file version",                     /* _XkbErrBadFileVersion     */
67         "error in Xkm file",                    /* _XkbErrBadFileFormat      */
68         "allocation failed",                    /* _XkbErrBadAlloc           */
69         "bad length",                           /* _XkbErrBadLength          */
70         "X request failed",                     /* _XkbErrXReqFailure        */
71         "not implemented"                       /* _XkbErrBadImplementation  */
72 };
73
74 unsigned        _XkbErrCode;
75 char *          _XkbErrLocation= NULL;
76 unsigned        _XkbErrData;
77