wm_notifyparent.c

来自「uCGUI」· C语言 代码 · 共 31 行

C
31
字号
/*************************************************************************************************************
                                                   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 + =
减小字号Ctrl + -
显示快捷键?