Windows compatibility fixes.
Supplied and tested by Patrick Dussud <phdussud@hotmail.com>.
This commit is contained in:
parent
9114125216
commit
1f77d74803
|
@ -16,7 +16,11 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#ifndef __Windows__
|
||||
#include <usb.h>
|
||||
#else
|
||||
#include <lusb0_usb.h>
|
||||
#endif
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <limits.h>
|
||||
|
|
|
@ -19,7 +19,12 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifndef __Windows__
|
||||
#include <usb.h>
|
||||
#else
|
||||
#include <lusb0_usb.h>
|
||||
#endif
|
||||
|
||||
#include "cdc_acm.h"
|
||||
#include "util.h"
|
||||
|
|
|
@ -20,7 +20,13 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifndef __Windows__
|
||||
#include <usb.h>
|
||||
#else
|
||||
#include <lusb0_usb.h>
|
||||
#endif
|
||||
|
||||
#include <time.h>
|
||||
|
||||
#include "cp210x.h"
|
||||
|
|
|
@ -19,7 +19,11 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#ifndef __Windows__
|
||||
#include <usb.h>
|
||||
#else
|
||||
#include <lusb0_usb.h>
|
||||
#endif
|
||||
|
||||
#include "rf2500.h"
|
||||
#include "util.h"
|
||||
|
|
|
@ -20,7 +20,12 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
#ifndef __Windows__
|
||||
#include <usb.h>
|
||||
#else
|
||||
#include <lusb0_usb.h>
|
||||
#endif
|
||||
|
||||
#include <time.h>
|
||||
|
||||
#include "ti3410.h"
|
||||
|
|
|
@ -20,9 +20,9 @@
|
|||
#define SPORT_H_
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#ifndef __Windows__
|
||||
|
||||
|
||||
#include <termios.h>
|
||||
#include <sys/ioctl.h>
|
||||
|
||||
|
|
|
@ -19,7 +19,11 @@
|
|||
#ifndef USBUTIL_H_
|
||||
#define USBUTIL_H_
|
||||
|
||||
#ifndef __Windows__
|
||||
#include <usb.h>
|
||||
#else
|
||||
#include <lusb0_usb.h>
|
||||
#endif
|
||||
|
||||
/* List all available USB devices. */
|
||||
void usbutil_list(void);
|
||||
|
|
Loading…
Reference in New Issue