Match and link CAuiMain

This commit is contained in:
Phillip Stephens 2022-12-09 13:30:06 -08:00
parent 44c34072f9
commit 4c6a0fc63c
3 changed files with 14 additions and 1 deletions

View File

@ -420,7 +420,7 @@ LIBS = [
"cflags": "$cflags_retro",
"host": True,
"objects": [
"GuiSys/CAuiMain",
["GuiSys/CAuiMain", True],
"GuiSys/CAuiMeter",
"GuiSys/CGuiGroup",
"GuiSys/CGuiHeadWidget",

View File

@ -0,0 +1,8 @@
#ifndef _CAUIMAIN
#define _CAUIMAIN
class CGuiSys;
bool InitializeApplicationUI(CGuiSys&);
#endif // _CAUIMAIN

5
src/GuiSys/CAuiMain.cpp Normal file
View File

@ -0,0 +1,5 @@
#include "GuiSys/CAuiMain.hpp"
bool InitializeApplicationUI(CGuiSys&) {
}