summaryrefslogtreecommitdiffstats
path: root/flasher/usbcalls.c
blob: 0527aef773c4b00f71923b9e7352d48386df46d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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