pascalabcnet/Utils/NodesGeneratorNew/Scintilla/Sources/ScintillaNET/NotifyHeader.cs

23 lines
601 B
C#
Raw Permalink Normal View History

2015-05-14 22:35:07 +03:00
#region Using Directives
using System;
using System.Runtime.InteropServices;
#endregion Using Directives
namespace ScintillaNET
{
/// <summary>
/// This matches the Win32 NMHDR structure
/// </summary>
[Obsolete("This type will not be public in future versions.")]
[StructLayout(LayoutKind.Sequential)]
public struct NotifyHeader
{
public IntPtr hwndFrom; // environment specific window handle/pointer
public IntPtr idFrom; // CtrlID of the window issuing the notification
public uint code; // The SCN_* notification code
}
}