X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/usb-driver/blobdiff_plain/f92c0fbce992d7d2c975bf8072a0cb6558ff97f7..501f1c2134564edacc35526b86968703d5485bcd:/xpcu.h diff --git a/xpcu.h b/xpcu.h index c189d82..cde1421 100644 --- a/xpcu.h +++ b/xpcu.h @@ -1,12 +1,16 @@ #define XPCU_CLAIM 1 #define XPCU_RELEASE 0 +#define ENABLE_INTERRUPT 1 +#define DISABLE_INTERRUPT 0 + struct xpcu_s { struct usb_device *dev; usb_dev_handle *handle; int interface; int alternate; unsigned long card_type; + pthread_mutex_t interrupt; }; int __attribute__ ((visibility ("hidden"))) xpcu_deviceinfo(struct xpcu_s *xpcu, struct usb_get_device_data *ugdd); @@ -15,3 +19,5 @@ void __attribute__ ((visibility ("hidden"))) xpcu_set_interface(struct xpcu_s *x struct xpcu_s __attribute__ ((visibility ("hidden"))) *xpcu_find(struct event *e); void __attribute__ ((visibility ("hidden"))) xpcu_found(struct xpcu_s *xpcu, struct event *e); void __attribute__ ((visibility ("hidden"))) xpcu_close(struct xpcu_s *xpcu, struct event *e); +void __attribute__ ((visibility ("hidden"))) xpcu_int_state(struct xpcu_s *xpcu, struct interrupt *it, int enable); +void __attribute__ ((visibility ("hidden"))) xpcu_int_wait(struct xpcu_s *xpcu, struct interrupt *it);