mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-10-15 12:38:59 +00:00
Now has support for isochronous transfers in the WinUSB backend, which may or may not work better than the UsbDk backend.
14 lines
281 B
C
14 lines
281 B
C
#ifndef LIBUSB_POLL_POSIX_H
|
|
#define LIBUSB_POLL_POSIX_H
|
|
|
|
#define usbi_write write
|
|
#define usbi_read read
|
|
#define usbi_close close
|
|
#define usbi_poll poll
|
|
|
|
int usbi_pipe(int pipefd[2]);
|
|
|
|
#define usbi_inc_fds_ref(x, y)
|
|
#define usbi_dec_fds_ref(x, y)
|
|
|
|
#endif /* LIBUSB_POLL_POSIX_H */
|