This commit is contained in:
Pheenoh
2021-01-02 17:49:20 -05:00
1240 changed files with 142288 additions and 95730 deletions
+2 -2
View File
@@ -4,11 +4,11 @@
#include "SComponent/c_node.h"
struct node_list_class {
typedef struct node_list_class {
node_class* mpHead;
node_class* mpTail;
int mSize;
};
} node_list_class;
extern "C" {
+1
View File
@@ -4,6 +4,7 @@
#include "SComponent/c_list.h"
#include "SComponent/c_node_iter.h"
#include "global.h"
extern "C" {
+6 -4
View File
@@ -2,11 +2,13 @@
#ifndef SCOMPONENT_C_NODE_H
#define SCOMPONENT_C_NODE_H
struct node_class {
node_class* mpPrevNode;
#include "global.h"
typedef struct node_class {
struct node_class* mpPrevNode;
void* mpData;
node_class* mpNextNode;
};
struct node_class* mpNextNode;
} node_class;
extern "C" {
+2 -2
View File
@@ -12,10 +12,10 @@ enum cPhs__Step {
cPhs_NEXT_e = 0x06,
};
struct request_of_phase_process_class {
typedef struct request_of_phase_process_class {
cPhs__Handler* mpHandlerTable;
int mPhaseStep;
};
} request_of_phase_process_class;
extern "C" {
+2 -2
View File
@@ -7,11 +7,11 @@
#include "SComponent/c_tree.h"
#include "global.h"
struct create_tag_class {
typedef struct create_tag_class {
node_class mpNode;
void* mpTagData;
s8 mbIsUse;
};
} create_tag_class;
extern "C" {
+5 -4
View File
@@ -4,16 +4,17 @@
#include "SComponent/c_node_iter.h"
#include "SComponent/c_tag.h"
#include "global.h"
struct method_filter {
typedef struct method_filter {
cNdIt_MethodFunc mpMethodFunc;
void* mpUserData;
};
} method_filter;
struct judge_filter {
typedef struct judge_filter {
cNdIt_JudgeFunc mpJudgeFunc;
void* mpUserData;
};
} judge_filter;
extern "C" {
+2 -3
View File
@@ -4,12 +4,11 @@
#include "SComponent/c_list.h"
#include "SComponent/c_node.h"
#include "global.h"
struct node_lists_tree_class {
typedef struct node_lists_tree_class {
node_list_class* mpLists;
int mNumLists;
};
} node_lists_tree_class;
extern "C" {
+1
View File
@@ -4,6 +4,7 @@
#include "SComponent/c_node_iter.h"
#include "SComponent/c_tree.h"
#include "global.h"
extern "C" {
+12
View File
@@ -0,0 +1,12 @@
#ifndef __C_XYZ_H_
#define __C_XYZ_H_
#include "global.h"
class cXyz : public Vec {};
extern cXyz lbl_80430CF4; // SComponent::cXyz::Zero
extern cXyz lbl_80430D0C; // SComponent::cXyz::BaseX
extern cXyz lbl_80430D24; // SComponent::cXyz::BaseY
#endif