mirror of
https://github.com/Echelon9/cxbx-shogun.git
synced 2025-04-02 10:41:47 -04:00
29 lines
630 B
C
29 lines
630 B
C
// ******************************************************************
|
|
// *
|
|
// * proj : OpenXDK
|
|
// *
|
|
// * desc : Open Source XBox Development Kit
|
|
// *
|
|
// * file : xohci_pci.h
|
|
// *
|
|
// * note : XBox USB Open Host Controller Interface (PCI)
|
|
// *
|
|
// ******************************************************************
|
|
#ifndef XOHCI_PCI_H
|
|
#define XOHCI_PCI_H
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
// ******************************************************************
|
|
// * external functions
|
|
// ******************************************************************
|
|
void xohci_pci_init();
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif
|