using System;
using System.Drawing;
using System.Windows.Forms;
namespace ZBobb
{
public class win32
{
public const int EM_GETSEL = 176;
public const int EM_LINEFROMCHAR = 201;
public const int EM_LINEINDEX = 187;
public const int EM_POSFROMCHAR = 214;
public const int WM_ERASEBKGND = 20;
public const int WM_HSCROLL = 276;
public const int WM_LBUTTONDBLCLK = 515;
public const int WM_LBUTTONDOWN = 513;
public const int WM_LBUTTONUP = 514;
public const int WM_MOUSELEAVE = 675;
public const int WM_MOUSEMOVE = 512;
public const int WM_PAINT = 15;
public const int WM_PRINT = 791;
public const int WM_RBUTTONDOWN = 516;
public const int WM_VSCROLL = 277;
public win32();
public static bool CaptureWindow(Control control, ref Bitmap bitmap);
public extern static uint GetCaretBlinkTime();
public extern static bool PostMessage(IntPtr hwnd, uint msg, IntPtr wParam, IntPtr lParam);
public extern static int SendMessage(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam);
}
}