forked from microsoft/winget-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWindowMessage.cs
More file actions
29 lines (26 loc) · 849 Bytes
/
Copy pathWindowMessage.cs
File metadata and controls
29 lines (26 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// -----------------------------------------------------------------------------
// <copyright file="WindowMessage.cs" company="Microsoft Corporation">
// Copyright (c) Microsoft Corporation. Licensed under the MIT License.
// </copyright>
// -----------------------------------------------------------------------------
namespace WinGetTestCommon
{
/// <summary>
/// Represents the Windows messages that can be sent or received by a window.
/// </summary>
public enum WindowMessage
{
/// <summary>
/// WM_CLOSE
/// </summary>
Close = 0x0010,
/// <summary>
/// WM_QUERYENDSESSION
/// </summary>
QueryEndSession = 0x0011,
/// <summary>
/// WM_ENDSESSION
/// </summary>
EndSession = 0x0016,
}
}