// Decompiled with JetBrains decompiler // Type: System.Windows.Forms.NativeMethods // Assembly: FiestaShark, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null // MVID: 12469781-3753-4869-9C1A-117F1862B52C // Assembly location: E:\Fiesta\Emus\DragonFiesta\Tools\FiestaShark-Farbod\FiestaShark.exe using System.Runtime.InteropServices; namespace System.Windows.Forms { internal sealed class NativeMethods { public const int WM_KEYDOWN = 256; public const int WM_KEYUP = 257; public const int WM_CHAR = 258; [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); } }