mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-26 07:18:47 -04:00
61148aa706
* 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_
|