mirror of
https://github.com/jaquadro/NBTExplorer.git
synced 2025-01-10 01:46:24 +00:00
27 lines
743 B
C#
27 lines
743 B
C#
using System;
|
|
using System.Drawing;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Be.Windows.Forms
|
|
{
|
|
internal static class NativeMethods
|
|
{
|
|
// Caret definitions
|
|
[DllImport("user32.dll", SetLastError=true)]
|
|
public static extern bool CreateCaret(IntPtr hWnd, IntPtr hBitmap, int nWidth, int nHeight);
|
|
|
|
[DllImport("user32.dll", SetLastError=true)]
|
|
public static extern bool ShowCaret(IntPtr hWnd);
|
|
|
|
[DllImport("user32.dll", SetLastError=true)]
|
|
public static extern bool DestroyCaret();
|
|
|
|
[DllImport("user32.dll", SetLastError=true)]
|
|
public static extern bool SetCaretPos(int X, int Y);
|
|
|
|
// Key definitions
|
|
public const int WM_KEYDOWN = 0x100;
|
|
public const int WM_KEYUP = 0x101;
|
|
public const int WM_CHAR = 0x102;
|
|
}
|
|
}
|