mirror of
https://github.com/zeldaret/tp
synced 2026-07-10 15:13:54 -04:00
MSL_C fully matched / some SSystem cleanup/ obj_rgate OK (#2011)
* cleanup SSystem files * MSL_C fully matched * fix build * remove asm * reorganize MSL_C/Runtime libs into more accurate setup * little more cleanup * cleanup some MSL headers * obj_rgate OK * remove asm * some rgate documentation
This commit is contained in:
@@ -1,27 +1,14 @@
|
||||
//
|
||||
// Generated By: dol2asm
|
||||
// Translation Unit: c_request
|
||||
//
|
||||
/**
|
||||
* c_request.cpp
|
||||
*
|
||||
*/
|
||||
|
||||
#include "SSystem/SComponent/c_request.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
//
|
||||
// Forward References:
|
||||
//
|
||||
|
||||
//
|
||||
// External References:
|
||||
//
|
||||
|
||||
//
|
||||
// Declarations:
|
||||
//
|
||||
|
||||
/* 802667D4-80266800 261114 002C+00 0/0 3/3 0/0 .text cReq_Is_Done__FP18request_base_class */
|
||||
int cReq_Is_Done(request_base_class* param_0) {
|
||||
if (param_0->field_0x0.flag1 == 1) {
|
||||
param_0->field_0x0.flag1 = 0;
|
||||
int cReq_Is_Done(request_base_class* i_this) {
|
||||
if (i_this->field_0x0.flag1 == 1) {
|
||||
i_this->field_0x0.flag1 = 0;
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
@@ -29,20 +16,20 @@ int cReq_Is_Done(request_base_class* param_0) {
|
||||
|
||||
/* 80266800-80266830 261140 0030+00 0/0 3/3 0/0 .text cReq_Done__FP18request_base_class
|
||||
*/
|
||||
void cReq_Done(request_base_class* param_0) {
|
||||
param_0->field_0x0.flag0 = 0;
|
||||
param_0->field_0x0.flag1 = 1;
|
||||
param_0->field_0x0.flag2 = 0;
|
||||
void cReq_Done(request_base_class* i_this) {
|
||||
i_this->field_0x0.flag0 = 0;
|
||||
i_this->field_0x0.flag1 = 1;
|
||||
i_this->field_0x0.flag2 = 0;
|
||||
}
|
||||
|
||||
/* 80266830-80266850 261170 0020+00 0/0 2/2 0/0 .text cReq_Command__FP18request_base_classUc */
|
||||
void cReq_Command(request_base_class* param_0, u8 param_1) {
|
||||
cReq_Create(param_0, param_1);
|
||||
void cReq_Command(request_base_class* i_this, u8 param_1) {
|
||||
cReq_Create(i_this, param_1);
|
||||
}
|
||||
|
||||
/* 80266850-80266880 261190 0030+00 1/1 2/2 0/0 .text cReq_Create__FP18request_base_classUc */
|
||||
void cReq_Create(request_base_class* param_0, u8 param_1) {
|
||||
param_0->field_0x0.flag0 = 1;
|
||||
param_0->field_0x0.flag1 = 0;
|
||||
param_0->field_0x0.flag2 = param_1;
|
||||
void cReq_Create(request_base_class* i_this, u8 param_1) {
|
||||
i_this->field_0x0.flag0 = 1;
|
||||
i_this->field_0x0.flag1 = 0;
|
||||
i_this->field_0x0.flag2 = param_1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user