most of JHostIO / m_Do_hostIO done (#2288)

This commit is contained in:
TakaRikka
2025-01-19 21:05:53 -08:00
committed by GitHub
parent 7137f49bfc
commit e0824a1590
41 changed files with 3653 additions and 52 deletions
+14
View File
@@ -0,0 +1,14 @@
#include "JSystem/JHostIO/JORServer.h"
u32 JORMessageBox(const char* message, const char* title, u32 style) {
u32 status = 0;
JORMContext* mctx = JORServer::getInstance()->attachMCTX(MCTX_MSG_OPEN_MESSAGE_BOX);
mctx->openMessageBox(&status, style, message, title);
JORServer::getInstance()->releaseMCTX(mctx);
while (status == 0) {
JOR_MESSAGELOOP();
}
return status;
}