mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 23:01:23 -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
34 lines
648 B
C
34 lines
648 B
C
#ifndef _DOLPHIN_GX_GXVERIFY_H_
|
|
#define _DOLPHIN_GX_GXVERIFY_H_
|
|
|
|
#ifdef __REVOLUTION_SDK__
|
|
#include <revolution/gx/GXVerify.h>
|
|
#else
|
|
#include <dolphin/gx/GXEnum.h>
|
|
#include <dolphin/gx/GXStruct.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef enum {
|
|
GX_WARN_NONE,
|
|
GX_WARN_SEVERE,
|
|
GX_WARN_MEDIUM,
|
|
GX_WARN_ALL
|
|
} GXWarningLevel;
|
|
|
|
typedef void (*GXVerifyCallback)(GXWarningLevel level, u32 id, char* msg);
|
|
|
|
void GXSetVerifyLevel(GXWarningLevel level);
|
|
GXVerifyCallback GXSetVerifyCallback(GXVerifyCallback cb);
|
|
|
|
void __GXVerifyVATImm(GXAttr attr, GXCompCnt cnt, GXCompType type, u8 frac);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
#endif
|