wm_iswindow.c
来自「uCGUI」· C语言 代码 · 共 29 行
C
29 行
/*************************************************************************************************************
uC/GUI
嵌入式通用图形软件
File : WM_IsWindow.c
Purpose : Windows manager, implementation of WM_IsWindow
************************************************************************************************************/
#include "WM_Intern.H"
#if GUI_WINSUPPORT /* If 0, WM will not generate any code */
/*************************************************************************************************************
* Public code
************************************************************************************************************/
int WM_IsWindow(WM_HWIN hWin) {
int r;
WM_LOCK();
r = WM__IsWindow(hWin);
WM_UNLOCK();
return r;
}
#else
void WM_IsWindow_C(void) {} /* avoid empty object files */
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?