introduce MWAPI
Some checks failed
pyrite-dev/milsko/pipeline/head There was a failure building this commit
Some checks failed
pyrite-dev/milsko/pipeline/head There was a failure building this commit
This commit is contained in:
parent
77ca92452e
commit
2dd2c3870f
41 changed files with 189 additions and 166 deletions
10
src/core.c
10
src/core.c
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue