usermsg.h

来自「windows ce 下启动代理程序」· C头文件 代码 · 共 32 行

H
32
字号
//                    - USERMSG.H -
//
//   Defines the user defined messages.
//
//   Author: Zhang Lei
//   Date:   2001. 12. 27
//

#ifndef __UserMsg
#define __UserMsg

// WM_SOCKET_NOTIFY and WM_SOCKET_DEAD are used internally by MFC's
// Windows sockets implementation.  For more information, see sockcore.cpp
#if !defined WM_SOCKET_NOTIFY
#define WM_SOCKET_NOTIFY       (WM_USER+100)
#endif

#define WM_SOCKET_DEAD         (WM_USER+101)

#define WM_USER_BUTTON         (WM_USER+200)
#define WM_QUIT_APP            (WM_USER+201)
#define WM_CHILD_CLOSED        (WM_USER+202)

#define WM_TASK_MANAGER        (WM_USER+300)
#define WM_TASK_SUSPEND        (WM_USER+301)
#define WM_TASK_START_OP       (WM_USER+302)
#define WM_TASK_END_OP         (WM_USER+303)

#define WM_AGV_INIT            (WM_USER+400)

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?