📄 wm_notifyparent.c
字号:
/*************************************************************************************************************
uC/GUI
嵌入式通用图形软件
File : WM_NotifyParent.c
Purpose : Windows manager, add. module
************************************************************************************************************/
#include "WM_Intern.H"
#if GUI_WINSUPPORT /* If 0, WM will not generate any code */
#include "GUIDebug.h"
/*************************************************************************************************************
* Public code
************************************************************************************************************/
void WM_NotifyParent(WM_HWIN hWin, int Notification) {
WM_MESSAGE Msg;
Msg.MsgId = WM_NOTIFY_PARENT;
Msg.Data.v = Notification;
WM_SendToParent(hWin, &Msg);
}
#else
void WM_NotifyParent_C(void) {} /* Avoid empty object files */
#endif /* GUI_WINSUPPORT */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -