mirror of
https://github.com/Cxbx-Reloaded/Cxbx-Reloaded.git
synced 2025-04-02 11:11:52 -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
|