Remove all non-public API from XKBcommon.h header
authorDan Nicholson <dbn.lists@gmail.com>
Wed, 8 Apr 2009 14:46:25 +0000 (07:46 -0700)
committerDan Nicholson <dbn.lists@gmail.com>
Wed, 8 Apr 2009 14:46:25 +0000 (07:46 -0700)
commit6a84a34d8689fb76b202f583452b97d57c68673d
tree5ab6159cefd03eba7920c921389b7b9c082361b1
parentb4a3c39b7e5141642f1146d971c26f7f79f13037
Remove all non-public API from XKBcommon.h header

The noble intention was to expose all the new API and new generic types
in the split out kbproto headers through XKBcommon.h. It turns out that
would be a massive amount of work in the server. Someday, but first just
wedging in XkbCompileKeymap* would be good.

Most of the API is in new internal xkb*.h headers. In order to allow the
XKBcommon.h header to be used from the server, we can't pull in other
headers from kbproto since the server has its own copies. However, types
that are different (XkbDescRec, XkbAction) still have Xkbc equivalents
here, and I think they should be used in the server.
36 files changed:
include/X11/extensions/XKBcommon.h
src/Makefile.am
src/alloc.c
src/atom.c
src/galloc.c
src/geom.c
src/keysym.c
src/malloc.c
src/maprules.c
src/misc.c
src/text.c
src/xkb.c
src/xkballoc.h [new file with mode: 0644]
src/xkbcomp/action.c
src/xkbcomp/alias.c
src/xkbcomp/compat.c
src/xkbcomp/expr.c
src/xkbcomp/geometry.c
src/xkbcomp/indicators.c
src/xkbcomp/keycodes.c
src/xkbcomp/keymap.c
src/xkbcomp/keytypes.c
src/xkbcomp/misc.c
src/xkbcomp/parseutils.c
src/xkbcomp/symbols.c
src/xkbcomp/vmod.c
src/xkbcomp/xkbcomp.c
src/xkbcomp/xkbcomp.h
src/xkbcomp/xkbparse.y
src/xkbcomp/xkbpath.h
src/xkbgeom.h [new file with mode: 0644]
src/xkbmisc.h [new file with mode: 0644]
src/xkbrules.h [new file with mode: 0644]
test/namescomp.c
test/rulescomp.c
test/xkey.c