19 lines
316 B
C#
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;
|
|||
|
|
}
|
|||
|
|
}
|