mirror of
https://github.com/raphnet/gc_n64_usb-v3
synced 2024-11-10 19:25:07 -05:00
13 lines
283 B
C
13 lines
283 B
C
#ifndef _hiddata_h__
|
|
#define _hiddata_h__
|
|
|
|
#include <stdint.h>
|
|
#include "usb.h"
|
|
|
|
uint16_t hiddata_get_report(struct usb_request *rq, const uint8_t **dat);
|
|
uint8_t hiddata_set_report(const struct usb_request *rq, const uint8_t *dat, uint16_t len);
|
|
|
|
void hiddata_doTask(void);
|
|
|
|
#endif
|