summaryrefslogtreecommitdiffstats
path: root/flasher/usbcalls.c
diff options
context:
space:
mode:
authorfishsoupisgood <github@madingley.org>2020-10-02 10:14:08 +0100
committerfishsoupisgood <github@madingley.org>2020-10-02 10:14:08 +0100
commitc89a70619e7ec76447a7e329e1971e9c1dfa1684 (patch)
tree5e98e7aea864d4b8ad46a3c5d53eb85eaf114dba /flasher/usbcalls.c
download9key_keyboard-c89a70619e7ec76447a7e329e1971e9c1dfa1684.tar.gz
9key_keyboard-c89a70619e7ec76447a7e329e1971e9c1dfa1684.tar.bz2
9key_keyboard-c89a70619e7ec76447a7e329e1971e9c1dfa1684.zip
fish
Diffstat (limited to 'flasher/usbcalls.c')
-rw-r--r--flasher/usbcalls.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/flasher/usbcalls.c b/flasher/usbcalls.c
new file mode 100644
index 0000000..0527aef
--- /dev/null
+++ b/flasher/usbcalls.c
@@ -0,0 +1,20 @@
+/* Name: usbcalls.c
+ * Project: usbcalls library
+ * Author: Christian Starkjohann
+ * Creation Date: 2006-02-02
+ * Tabsize: 4
+ * Copyright: (c) 2006 by OBJECTIVE DEVELOPMENT Software GmbH
+ * License: Proprietary, free under certain conditions. See Documentation.
+ * This Revision: $Id$
+ */
+
+/* This file includes the appropriate implementation based on platform
+ * specific defines.
+ */
+
+#if defined(WIN32)
+# include "usb-windows.c"
+#else
+/* e.g. defined(__APPLE__) */
+# include "usb-libusb.c"
+#endif