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
30 lines
585 B
C
30 lines
585 B
C
#ifndef _REVOLUTION_GX_GXVERIFY_H_
|
|
#define _REVOLUTION_GX_GXVERIFY_H_
|
|
|
|
#include <revolution/gx/GXEnum.h>
|
|
#include <revolution/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
|