mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
353721578d
* shieldD revo dvd mostly done * shieldD revo nand mostly done * shieldD revo fs mostly done * shieldD revo ipc mostly done * shieldD revo sdk pad done
20 lines
344 B
C
20 lines
344 B
C
#ifndef _REVOLUTION_IPCPROFILE_H_
|
|
#define _REVOLUTION_IPCPROFILE_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <revolution/types.h>
|
|
|
|
void IPCiProfInit(void);
|
|
void IPCiProfQueueReq(void* req, s32 handle);
|
|
void IPCiProfReply(void* req, s32 handle);
|
|
void IPCiProfAck(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _REVOLUTION_IPCPROFILE_H_
|