diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2009-03-26 16:30:45 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2009-03-26 16:39:35 +1000 |
commit | 2bc4ebba78056eecf76a294f1c3edff892b286f7 (patch) | |
tree | 5560300105959004cb48931eb6ad2d6167c97e0d /src | |
parent | 20629761be39493b650f48e120d5c970bca5e796 (diff) |
Remove public declarations for SizeClassInfo and ParseClassInfo.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/XIint.h | 11 | ||||
-rw-r--r-- | src/XListDev.c | 4 |
2 files changed, 2 insertions, 13 deletions
diff --git a/src/XIint.h b/src/XIint.h index 47c6f53..3379882 100644 --- a/src/XIint.h +++ b/src/XIint.h @@ -24,15 +24,4 @@ extern Status _XiEventToWire( register int * /* count */ ); -extern int SizeClassInfo( - xAnyClassPtr * /* any */, - int /* num_classes */ -); - -extern void ParseClassInfo( - xAnyClassPtr * /* any */, - XAnyClassPtr * /* Any */, - int /* num_classes */ -); - #endif diff --git a/src/XListDev.c b/src/XListDev.c index 292aae5..46db220 100644 --- a/src/XListDev.c +++ b/src/XListDev.c @@ -60,7 +60,7 @@ SOFTWARE. #include <X11/extensions/extutil.h> #include "XIint.h" -int +static int SizeClassInfo(xAnyClassPtr *any, int num_classes) { int size = 0; @@ -91,7 +91,7 @@ SizeClassInfo(xAnyClassPtr *any, int num_classes) return size; } -void +static void ParseClassInfo(xAnyClassPtr *any, XAnyClassPtr *Any, int num_classes) { int j, k; |