minix/drivers/usbd/include/usb/hcd_ddekit.h
Wojciech Zajac 1858789bf6 Unification of various HCD types.
DDEKit URB's are no longer directly handled by HCD but rather translated and validated to avoid type conversion issues and illegal values.
2014-07-28 17:05:51 +02:00

19 lines
517 B
C
Executable file

/*
* Whatever must be known to DDEkit callers
*/
#ifndef _HCD_DDEKIT_H_
#define _HCD_DDEKIT_H_
#include <usb/hcd_common.h>
/*===========================================================================*
* External declarations *
*===========================================================================*/
void hcd_connect_cb(hcd_device_state *);
void hcd_disconnect_cb(hcd_device_state *);
void hcd_completion_cb(hcd_urb *);
#endif /* !_HCD_DDEKIT_H_ */