00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00041 #ifndef _USB_PRIVATE_H_
00042 #define _USB_PRIVATE_H_
00043
00044 #include "dmxinputinit.h"
00045 #include "inputstr.h"
00046 #include "Xos.h"
00047 #include <errno.h>
00048 #include <linux/input.h>
00049 #include "usb-common.h"
00050
00051
00052
00053 #ifndef EV_MSC
00054 #define EV_MSC 0x04
00055 #endif
00056 #ifndef EV_FF
00057 #define EV_FF 0x15
00058 #endif
00059 #ifndef LED_SLEEP
00060 #define LED_SLEEP 0x05
00061 #endif
00062 #ifndef LED_SUSPEND
00063 #define LED_SUSPEND 0x06
00064 #endif
00065 #ifndef LED_MUTE
00066 #define LED_MUTE 0x07
00067 #endif
00068 #ifndef LED_MISC
00069 #define LED_MISC 0x08
00070 #endif
00071 #ifndef BTN_DEAD
00072 #define BTN_DEAD 0x12f
00073 #endif
00074 #ifndef BTN_THUMBL
00075 #define BTN_THUMBL 0x13d
00076 #endif
00077 #ifndef BTN_THUMBR
00078 #define BTN_THUMBR 0x13e
00079 #endif
00080 #ifndef MSC_SERIAL
00081 #define MSC_SERIAL 0x00
00082 #endif
00083 #ifndef MSC_MAX
00084 #define MSC_MAX 0x07
00085 #endif
00086
00087
00088 #ifndef ABS_WHEEL
00089 #define ABS_WHEEL 0x08
00090 #endif
00091 #ifndef ABS_GAS
00092 #define ABS_GAS 0x09
00093 #endif
00094 #ifndef ABS_BRAKE
00095 #define ABS_BRAKE 0x0a
00096 #endif
00097
00098 #define NUM_STATE_ENTRIES (256/32)
00099
00100
00101 typedef struct _myPrivate {
00102 DeviceIntPtr pDevice;
00103 int fd;
00104 unsigned char mask[EV_MAX/8 + 1];
00105 int numRel, numAbs, numLeds;
00106 int relmap[DMX_MAX_AXES];
00107 int absmap[DMX_MAX_AXES];
00109 CARD32 kbdState[NUM_STATE_ENTRIES];
00110 DeviceIntPtr pKeyboard;
00112 int pitch;
00113 unsigned long duration;
00115
00116 DMXInputInfo *dmxInput;
00117 } myPrivate;
00118 #endif