diff options
| author | 2020-07-13 18:48:19 +0000 | |
|---|---|---|
| committer | 2020-07-13 18:48:19 +0000 | |
| commit | 883fab2fff5ff9bdad38eee4e55bacc520ce0cc9 (patch) | |
| tree | 63d754c60cb1962440a9c2fad52a4d19924b1434 /src/input_common/gcadapter/gc_adapter.h | |
| parent | cmake: pass libusb include directory as well (diff) | |
| download | yuzu-883fab2fff5ff9bdad38eee4e55bacc520ce0cc9.tar.gz yuzu-883fab2fff5ff9bdad38eee4e55bacc520ce0cc9.tar.xz yuzu-883fab2fff5ff9bdad38eee4e55bacc520ce0cc9.zip | |
input_common: make libusb private to gc_adapter
Diffstat (limited to 'src/input_common/gcadapter/gc_adapter.h')
| -rw-r--r-- | src/input_common/gcadapter/gc_adapter.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/input_common/gcadapter/gc_adapter.h b/src/input_common/gcadapter/gc_adapter.h index b1c2a1958..1337c260e 100644 --- a/src/input_common/gcadapter/gc_adapter.h +++ b/src/input_common/gcadapter/gc_adapter.h | |||
| @@ -8,10 +8,13 @@ | |||
| 8 | #include <mutex> | 8 | #include <mutex> |
| 9 | #include <thread> | 9 | #include <thread> |
| 10 | #include <unordered_map> | 10 | #include <unordered_map> |
| 11 | #include <libusb.h> | ||
| 12 | #include "common/common_types.h" | 11 | #include "common/common_types.h" |
| 13 | #include "common/threadsafe_queue.h" | 12 | #include "common/threadsafe_queue.h" |
| 14 | 13 | ||
| 14 | struct libusb_context; | ||
| 15 | struct libusb_device; | ||
| 16 | struct libusb_device_handle; | ||
| 17 | |||
| 15 | namespace GCAdapter { | 18 | namespace GCAdapter { |
| 16 | 19 | ||
| 17 | enum { | 20 | enum { |