Match remaining functions in d_main

This commit is contained in:
Sean Miller
2026-04-06 18:12:54 +01:00
parent 5bd9fb7bad
commit 10e438bea8
3 changed files with 45 additions and 6 deletions
+9
View File
@@ -35,6 +35,7 @@ public:
PROC_FLAG_DELETE = GET_PROC_FLAG(DELETE),
PROC_FLAG_DRAW = GET_PROC_FLAG(DRAW)
};
fManager_c(fBase_c *owner) : connect_node(owner), execute_node(owner), draw_node(owner), search_node(owner) {}
~fManager_c() {}
int getSearchTableNum();
@@ -43,6 +44,14 @@ public:
static fBase_c *searchBaseByGroupType(u8 groupType, const fBase_c *parent = nullptr);
static void mainLoop();
static void setStopProcFlags(u32 flags) {
m_StopProcInf |= flags;
}
static void keepStopProcFlags(u32 flags) {
m_StopProcInf &= flags;
}
private:
fTrNdBa_c connect_node; ///< The node in ::m_connectManage.
fLiNdPrio_c execute_node; ///< The node in ::m_executeManage.