mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-09-10 19:06:51 -04:00
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
This commit is contained in:
@@ -9,13 +9,11 @@
|
||||
#include "f_op/f_op_msg_mng.h"
|
||||
#include "f_pc/f_pc_manager.h"
|
||||
|
||||
/* 8001F488-8001F4B0 019DC8 0028+00 1/0 0/0 0/0 .text fopMsg_Draw__FPv */
|
||||
static int fopMsg_Draw(void* i_this) {
|
||||
msg_class* a_this = (msg_class*)i_this;
|
||||
return fpcLf_DrawMethod(a_this->sub_method, i_this);
|
||||
}
|
||||
|
||||
/* 8001F4B0-8001F4E8 019DF0 0038+00 1/0 0/0 0/0 .text fopMsg_Execute__FPv */
|
||||
static int fopMsg_Execute(void* i_this) {
|
||||
msg_class* a_this = (msg_class*)i_this;
|
||||
|
||||
@@ -27,7 +25,6 @@ static int fopMsg_Execute(void* i_this) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* 8001F4E8-8001F53C 019E28 0054+00 1/0 0/0 0/0 .text fopMsg_IsDelete__FPv */
|
||||
static int fopMsg_IsDelete(void* i_this) {
|
||||
msg_class* a_this = (msg_class*)i_this;
|
||||
|
||||
@@ -39,7 +36,6 @@ static int fopMsg_IsDelete(void* i_this) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* 8001F53C-8001F588 019E7C 004C+00 1/0 0/0 0/0 .text fopMsg_Delete__FPv */
|
||||
static int fopMsg_Delete(void* i_this) {
|
||||
msg_class* a_this = (msg_class*)i_this;
|
||||
|
||||
@@ -53,10 +49,8 @@ static int fopMsg_Delete(void* i_this) {
|
||||
u8 fopMsg::MemCheck;
|
||||
#endif
|
||||
|
||||
/* 80450CF0-80450CF8 0001F0 0004+04 1/1 0/0 0/0 .sbss fopMsg_MSG_TYPE */
|
||||
static int fopMsg_MSG_TYPE;
|
||||
|
||||
/* 8001F588-8001F660 019EC8 00D8+00 1/0 0/0 0/0 .text fopMsg_Create__FPv */
|
||||
int fopMsg_Create(void* i_this) {
|
||||
msg_class* a_this = (msg_class*)i_this;
|
||||
|
||||
@@ -86,7 +80,6 @@ int fopMsg_Create(void* i_this) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* 803A3958-803A3970 -00001 0014+04 0/0 5/0 0/0 .data g_fopMsg_Method */
|
||||
leafdraw_method_class g_fopMsg_Method = {
|
||||
(process_method_func)fopMsg_Create, (process_method_func)fopMsg_Delete,
|
||||
(process_method_func)fopMsg_Execute, (process_method_func)fopMsg_IsDelete,
|
||||
|
||||
Reference in New Issue
Block a user