~ruther/NosSmooth.Local

ref: 673fcf0568d5a5e113fc7522585d43c9c165854b NosSmooth.Local/src/Core/NosSmooth.LocalBinding/Structs/Message.cs -rw-r--r-- 801 bytes
673fcf05 — Rutherther feat(binding): add message control hook 2 years ago
                                                                                
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
30
31
32
33
//
//  Message.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace NosSmooth.LocalBinding.Structs;

/// <summary>
/// A Window message.
/// </summary>
public struct Message
{
    /// <summary>
    /// Gets or sets the message code.
    /// </summary>
    public WindowsMessage Msg { get; set; }

    /// <summary>
    /// Gets or sets the first parameter.
    /// </summary>
    public IntPtr FirstParam { get; set; }

    /// <summary>
    /// Gets or sets the second parameter.
    /// </summary>
    public IntPtr SecondParam { get; set; }

    /// <summary>
    /// Gets or sets the pointer to the result.
    /// </summary>
    public IntPtr Result { get; set; }
}
Do not follow this link