mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 15:00:55 -04:00
7ef1810132
* m_Do_main / f_ap_game debug stuff * revolution sdk compatibility * f_op_actor debug work * rename fopAcM_SetupActor to fopAcM_ct * fix build * fix jp/pal splits
25 lines
379 B
C
25 lines
379 B
C
#ifndef _DOLPHIN_OSL2_H_
|
|
#define _DOLPHIN_OSL2_H_
|
|
|
|
#ifdef __REVOLUTION_SDK__
|
|
#include <revolution/os/OSL2.h>
|
|
#else
|
|
#include <dolphin/types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void L2Enable(void);
|
|
void L2Disable(void);
|
|
void L2GlobalInvalidate(void);
|
|
void L2SetDataOnly(BOOL dataOnly);
|
|
void L2SetWriteThrough(BOOL writeThrough);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
#endif
|