mirror of
https://github.com/Echelon9/cxbx-shogun.git
synced 2025-04-02 10:41:47 -04:00
git-svn-id: https://cxbx.svn.sourceforge.net/svnroot/cxbx/branches/private/shogun/wip@147 587435c2-1f12-0410-b34b-ee784db558a2
33 lines
652 B
C
33 lines
652 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
|
|
|
|
|
|
|
|
|