mirror of
https://github.com/Lorenzooone/cc3dsfs.git
synced 2026-04-17 18:46:11 -05:00
12 lines
175 B
C++
12 lines
175 B
C++
#ifndef __USB_GENERIC_HPP
|
|
#define __USB_GENERIC_HPP
|
|
|
|
#include <libusb.h>
|
|
|
|
void usb_init();
|
|
void usb_close();
|
|
bool usb_is_initialized();
|
|
libusb_context* get_usb_ctx();
|
|
|
|
#endif
|