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

19 lines
316 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
{
// TODO Make internal
[StructLayout(LayoutKind.Sequential)]
public struct TextRange
{
public CharacterRange chrg;
public IntPtr lpstrText;
}
}