summaryrefslogtreecommitdiffstats
path: root/flasher/usbcalls.c
diff options
context:
space:
mode:
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