diff options
Diffstat (limited to 'hw/xfree86/common/xf86InPriv.h')
-rw-r--r-- | hw/xfree86/common/xf86InPriv.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/hw/xfree86/common/xf86InPriv.h b/hw/xfree86/common/xf86InPriv.h new file mode 100644 index 000000000..5cd66d882 --- /dev/null +++ b/hw/xfree86/common/xf86InPriv.h @@ -0,0 +1,17 @@ +/* $XFree86: xc/programs/Xserver/hw/xfree86/common/xf86InPriv.h,v 1.4 1999/05/17 13:17:14 dawes Exp $ */ + +#ifndef _xf86InPriv_h +#define _xf86InPriv_h + +/* xf86Globals.c */ +#ifdef XFree86LOADER +extern InputDriverPtr *xf86InputDriverList; +#else +extern InputDriverPtr xf86InputDriverList[]; +#endif +extern int xf86NumInputDrivers; + +/* xf86Xinput.c */ +void xf86ActivateDevice(InputInfoPtr pInfo); + +#endif /* _xf86InPriv_h */ |