pascalabcnet/Utils/NodesGeneratorNew/Scintilla/Sources/ScintillaNET/TextRange.cs
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

19 lines
316 B
C#

#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;
}
}