mirror of
https://github.com/zeldaret/tp
synced 2026-05-29 16:45:03 -04:00
139722c731
* begin revolution sdk setup * wii rvl test * revo OS mostly done for shieldD
20 lines
286 B
C
20 lines
286 B
C
#ifndef _REVOLUTION_OSIPC_H_
|
|
#define _REVOLUTION_OSIPC_H_
|
|
|
|
#include <revolution/types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void* __OSGetIPCBufferHi(void);
|
|
void* __OSGetIPCBufferLo(void);
|
|
void __OSInitIPCBuffer(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif // _REVOLUTION_OSIPC_H_
|