X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/usb-driver/blobdiff_plain/f92c0fbce992d7d2c975bf8072a0cb6558ff97f7..8af4d9103d2006a929cf9048835a4dcfcf6e344d:/xpcu.h diff --git a/xpcu.h b/xpcu.h index c189d82..30ff4f1 100644 --- a/xpcu.h +++ b/xpcu.h @@ -1,17 +1,23 @@ #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); int __attribute__ ((visibility ("hidden"))) xpcu_transfer(struct xpcu_s *xpcu, struct usb_transfer *ut); -void __attribute__ ((visibility ("hidden"))) xpcu_set_interface(struct xpcu_s *xpcu, struct usb_set_interface *usi); +int __attribute__ ((visibility ("hidden"))) xpcu_set_interface(struct xpcu_s *xpcu, struct usb_set_interface *usi); 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); +int __attribute__ ((visibility ("hidden"))) xpcu_found(struct xpcu_s *xpcu, struct event *e); +int __attribute__ ((visibility ("hidden"))) xpcu_close(struct xpcu_s *xpcu, struct event *e); +int __attribute__ ((visibility ("hidden"))) xpcu_int_state(struct xpcu_s *xpcu, struct interrupt *it, int enable); +int __attribute__ ((visibility ("hidden"))) xpcu_int_wait(struct xpcu_s *xpcu, struct interrupt *it);