mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[SDK][INCLUDE] Add WM_WTSSESSION_CHANGE message (#1730)
- Add WM_WTSSESSION_CHANGE messages to <winuser.h>. - Add WTS_* constant macros.
This commit is contained in:
parent
b292acb5f7
commit
34bf24756a
1 changed files with 15 additions and 0 deletions
|
@ -1825,6 +1825,21 @@ extern "C" {
|
|||
#define WM_MOUSEHOVER 0x02A1
|
||||
#define WM_MOUSELEAVE 0x02A3
|
||||
|
||||
#if (_WIN32_WINNT >= 0x0501)
|
||||
#define WTS_CONSOLE_CONNECT 0x1
|
||||
#define WTS_CONSOLE_DISCONNECT 0x2
|
||||
#define WTS_REMOTE_CONNECT 0x3
|
||||
#define WTS_REMOTE_DISCONNECT 0x4
|
||||
#define WTS_SESSION_LOGON 0x5
|
||||
#define WTS_SESSION_LOGOFF 0x6
|
||||
#define WTS_SESSION_LOCK 0x7
|
||||
#define WTS_SESSION_UNLOCK 0x8
|
||||
#define WTS_SESSION_REMOTE_CONTROL 0x9
|
||||
#define WTS_SESSION_CREATE 0xA
|
||||
#define WTS_SESSION_TERMINATE 0xB
|
||||
#define WM_WTSSESSION_CHANGE 0x02B1
|
||||
#endif
|
||||
|
||||
#define WM_CUT 768
|
||||
#define WM_COPY 769
|
||||
#define WM_PASTE 770
|
||||
|
|
Loading…
Reference in a new issue