//
// 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;
///
/// A Window message.
///
public struct Message
{
///
/// Gets or sets the message code.
///
public WindowsMessage Msg { get; set; }
///
/// Gets or sets the first parameter.
///
public IntPtr FirstParam { get; set; }
///
/// Gets or sets the second parameter.
///
public IntPtr SecondParam { get; set; }
///
/// Gets or sets the pointer to the result.
///
public IntPtr Result { get; set; }
}