blob: b4ecfbdc1f55f918160a891a26e675e596714a18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _USB_HANDLER_H
#define _USB_HANDLER_H
#define MAX_PAYLOAD_LEN (64 - sizeof(struct openpcd_hdr))
typedef int usb_cmd_fn(struct req_ctx *rctx);
extern int usb_hdlr_register(usb_cmd_fn *hdlr, u_int8_t class);
extern void usb_in_process(void);
extern void usb_out_process(void);
#endif
|