class Api
{
public const uint WS_EX_STATICEDGE = 0x00020000;
public const uint WS_CHILD = 0x40000000;
public const uint WS_VISIBLE = 0x10000000;
public const uint WS_HSCROLL = 0x00100000;
public const uint WS_VSCROLL = 0x00200000;
public const int GWL_WNDPROC = -4;
public const int WM_ACTIVATEAPP = 0x1C;
public const int WM_COMMAND = 0x111;
public const int WM_CLOSE = 0x10;
public const int WM_DESTROY = 2;
public const int WM_DROPFILES = 0x233;
public const int WM_ERASEBKGND = 0x14;
public const int WM_KEYDOWN = 256;
public const int WM_LBUTTONDBLCLK = 515;
public const int WM_LBUTTONDOWN = 513;
public const int WM_LBUTTONUP = 514;
public const int WM_MOVE = 0x3;
public const int WM_MOUSEMOVE = 512;
public const int WM_MOVING = 0x216;
public const int WM_NCHITTEST = 0x0084;
public const int WM_NCLBUTTONDOWN = 161;
public const int WM_NCLBUTTONDBLCLK = 163;
public const int WM_PAINT = 0xF;
public const int WM_RBUTTONDOWN = 516;
public const int WM_TIMER = 0x113;
public const int WM_PRINT = 0x317;
public const int WM_PRINTCLIENT = 0x318;
public const int WM_SETREDRAW = 0xB;
public const int WM_SIZING = 0x214;
public const int WM_SIZE = 0x5;
public const int WM_USER = 0x400;
public const int WM_STRINGDATA = WM_USER + 3;
public const int VK_HOME = 36;
public const int VK_END = 35;
public const int VK_PRIOR = 33;
public const int VK_NEXT = 34;
public const int VK_LEFT = 37;
public const int VK_UP = 38;
public const int VK_RIGHT = 39;
public const int VK_DOWN = 40;
of course it's just a part of class API
what i want to know is what those numbers means...i know it's constants but why 35 or 38 or 0x214


Sign In
Create Account


Back to top









