#ifndef _REVOLUTION_IPC_H_ #define _REVOLUTION_IPC_H_ #include #include #include #ifdef __cplusplus extern "C" { #endif void IPCInit(void); void IPCReInit(void); u32 IPCReadReg(u32 regIdx); void IPCWriteReg(u32 regIdx, u32 data); void* IPCGetBufferHi(void); void* IPCGetBufferLo(void); void IPCSetBufferLo(void* newLo); #ifdef __cplusplus } #endif #endif // _REVOLUTION_IPC_H_