diff options
Diffstat (limited to 'src/ws.c')
-rw-r--r-- | src/ws.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -34,9 +34,7 @@ #include <mipointer.h> #include <extinit.h> -#ifdef XFree86LOADER #include "xf86Module.h" -#endif #define NAXES 2 /* X and Y axes only */ #define NBUTTONS 32 /* max theoretical buttons */ @@ -59,11 +57,9 @@ typedef struct WSDevice { int negativeW, positiveW; /* mappings for W axis */ } WSDeviceRec, *WSDevicePtr; -#ifdef XFree86LOADER static MODULESETUPPROTO(SetupProc); static void TearDownProc(pointer); static const OptionInfoRec *wsAvailableOptions(void *); -#endif static InputInfoPtr wsPreInit(InputDriverPtr, IDevPtr, int); static int wsProc(DeviceIntPtr, int); @@ -144,7 +140,6 @@ static int debug_level = 0; # define DBG(lvl, f) #endif -#ifdef XFree86LOADER static pointer SetupProc(pointer module, pointer options, int *errmaj, int *errmin) { @@ -168,7 +163,6 @@ wsAvailableOptions(void *unused) { return WSOptions; } -#endif /* XFree86LOADER */ static InputInfoPtr wsPreInit(InputDriverPtr drv, IDevPtr dev, int flags) |