fix documentation. wip query

git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@518 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-10-30 08:45:42 +00:00
parent 7a4669f64d
commit 33ff6cb420
2 changed files with 15 additions and 1 deletions

View File

@@ -274,12 +274,19 @@ MWDECL void MwGrabPointer(MwWidget handle, int toggle);
MWDECL void MwHideCursor(MwWidget handle);
/*!
* @param Toggles the dark theme
* @brief Toggles the dark theme
* @param handle Widget
* @param toggle Toggle
*/
MWDECL void MwToggleDarkTheme(MwWidget handle, int toggle);
/*!
* @brief Queries the widget
* @param handle Widget
* @param query Query
*/
MWDECL MwWidget MwQuery(MwWidget handle, const char* query);
#ifdef __cplusplus
}
#endif

View File

@@ -588,3 +588,10 @@ void MwToggleDarkTheme(MwWidget handle, int toggle) {
force_render_all(handle);
}
}
MwWidget MwQuery(MwWidget handle, const char* query){
(void)handle;
(void)query;
return NULL;
}