Files
TakaRikka a6e76c0841 project cleanup (#2895)
* some wii OS fixes

* remove old dol2asm comments

* remove dol2asm.h

* remove function address comments

* normalize ATTRIBUTE_ALIGN usage

* DECL_WEAK macro

* fix gcc attribute weak macro

* wrap more mwcc specific things in ifdefs

* fixes

* fix revo sdk version flags

* fixes
2025-11-30 15:23:42 -07:00

29 lines
588 B
C

#ifndef C_C_DYLINK_H
#define C_C_DYLINK_H
#include "f_op/f_op_scene_mng.h"
struct cDylPhs {
static int phase_01(void*);
static int phase_02(s16*);
static int phase_03(void*);
static int Link(request_of_phase_process_class*, s16);
static int Unlink(request_of_phase_process_class*, s16);
};
struct DynamicNameTableEntry {
s16 mKey;
const char* name;
};
int cDyl_InitAsyncIsDone();
void cDyl_InitAsync();
BOOL cDyl_IsLinked(s16 i_ProfName);
BOOL cDyl_Unlink(s16 i_ProfName);
int cDyl_LinkASync(s16 i_ProfName);
BOOL cCc_Check();
#endif /* C_C_DYLINK_H */