mirror of
https://github.com/Echelon9/cxbx-shogun.git
synced 2025-04-02 10:41:47 -04:00
33 lines
619 B
C
33 lines
619 B
C
// ******************************************************************
|
|
// *
|
|
// * proj : OpenXDK
|
|
// *
|
|
// * desc : Open Source XBox Development Kit
|
|
// *
|
|
// * file : xusb.h
|
|
// *
|
|
// * note : Xbox USB Support
|
|
// *
|
|
// ******************************************************************
|
|
#ifndef XUSB_H
|
|
#define XUSB_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// ******************************************************************
|
|
// * Xbox USB Support by Georg Archer
|
|
// ******************************************************************
|
|
#include "linux_wrapper.h"
|
|
#include "linux/usb.h"
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|