Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Unified Diff: third_party/libusb/src/libusb/interrupt.h

Issue 18593002: Usb backend refactor step 2: Separate Usb Device Handle and Usb Device (deprecate) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Separate Usb Device Handle and Usb Device Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/libusb/src/libusb/interrupt.h
diff --git a/third_party/libusb/src/libusb/interrupt.h b/third_party/libusb/src/libusb/interrupt.h
new file mode 100644
index 0000000000000000000000000000000000000000..ac8d52dc52f3a0d0efec5fcb169a434ffb433019
--- /dev/null
+++ b/third_party/libusb/src/libusb/interrupt.h
@@ -0,0 +1,20 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef THIRD_PARTY_LIBUSB_SRC_LIBUSB_INTERRUPT_H
+#define THIRD_PARTY_LIBUSB_SRC_LIBUSB_INTERRUPT_H
+
+#include "libusb.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+int LIBUSB_CALL libusb_interrupt_handle_event(struct libusb_context* ctx);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // THIRD_PARTY_LIBUSB_SRC_LIBUSB_INTERRUPT_H

Powered by Google App Engine
This is Rietveld 408576698