add tick_list

git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@391 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-10-17 02:21:31 +00:00
parent 92e7f13897
commit 791960a128
3 changed files with 32 additions and 1 deletions

View File

@@ -231,6 +231,12 @@ MWDECL void MwForceRender(MwWidget handle);
*/
MWDECL void MwForceRender2(MwWidget handle, void* ptr);
/*!
* %brief Adds an widget to tick handler list
* %param handle Widget
*/
MWDECL void MwAddTickList(MwWidget handle);
#ifdef __cplusplus
}
#endif

View File

@@ -105,6 +105,7 @@ struct _MwWidget {
MwVoidKeyValue* data;
MwWidget* destroy_queue;
MwWidget* tick_list;
};
#endif