diff options
author | Julien Cristau <jcristau@debian.org> | 2009-09-29 14:15:06 +0200 |
---|---|---|
committer | Julien Cristau <jcristau@debian.org> | 2009-09-29 14:22:46 +0200 |
commit | 3530845c70b0d7f9f853b29337c9397a3a599e52 (patch) | |
tree | 3f919c81d5b801054e785ba054d27d66357e2b77 | |
parent | 801d77d035a10250dab728c046a6e9b2775e6dfb (diff) |
Don't export sizeDeviceClassType, size_classes and copy_classes
Signed-off-by: Julien Cristau <jcristau@debian.org>
-rw-r--r-- | src/XExtInt.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/XExtInt.c b/src/XExtInt.c index 7f7e9cc..e87ead8 100644 --- a/src/XExtInt.c +++ b/src/XExtInt.c @@ -102,8 +102,6 @@ extern int _XiGetDevicePresenceNotifyEvent( int copy_classes(XIDeviceInfo *to, xXIAnyInfo* from, int nclasses); int size_classes(xXIAnyInfo* from, int nclasses); -int sizeDeviceClassType(int type, int num_elements); - static XExtensionInfo *xinput_info; static /* const */ char *xinput_extension_name = INAME; @@ -961,7 +959,7 @@ sizeDeviceEvent(int buttons_len, int valuators_len, * * Also used from copy_classes in XIQueryDevice.c */ -int +static int sizeDeviceClassType(int type, int num_elements) { int l = 0; @@ -1342,7 +1340,7 @@ wireToDeviceEvent(xXIDeviceEvent *in, XGenericEventCookie* cookie) return 1; } -int +_X_HIDDEN int size_classes(xXIAnyInfo* from, int nclasses) { int len, i; @@ -1383,7 +1381,7 @@ size_classes(xXIAnyInfo* from, int nclasses) * |________|___________^ * |______________________^ */ -int +_X_HIDDEN int copy_classes(XIDeviceInfo* to, xXIAnyInfo* from, int nclasses) { XIAnyClassInfo *any_lib; |