introduce MWAPI
Some checks failed
pyrite-dev/milsko/pipeline/head There was a failure building this commit

This commit is contained in:
Nishi 2026-04-22 12:05:49 +09:00
commit 2dd2c3870f
41 changed files with 189 additions and 166 deletions

View file

@ -913,6 +913,16 @@ void MwForceRender2(MwWidget handle, void* ptr) {
MwForceRender(handle);
}
void MwForceRender_Internal(MwWidget handle) {
MwForceRender(handle);
}
void MwForceRender2_Internal(MwWidget handle, void* ptr) {
(void)ptr;
MwForceRender(handle);
}
void MwAddTickList(MwWidget handle) {
MwWidget root = handle;
while(root->parent != NULL) root = root->parent;