SYSTEM HACKING
Windows API Basics
Full code #include //windows.h: 대부분의 헤더 파일이 정의 #include LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPRAM); HINSTANCE g_hInst; LPCTSTR lpszClass=TEXT("First"); int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszCmdParam, int nCmdShow) { HWND hWnd; MSG Message; WNDCLASS WndClass; g_hInst=hInstance; WndClass.cbClsExtra=0; WndClass.cbWndExtra=0; WndClass.hbrBackground=(HB..