API기본 함수
//DC 얻는 방법 HDC GetDC(HWND hWnd); // 생성 int ReleaseDC(HWND hWnd,HDC hDC); //해제 // 윈도우 생성 HWND CreateWindow(lpszClassName, lpszWindowName, dwStyle, x, y, nWidth, nHeight, hwndParent, hmenu, hinst, lpvParam) // 윈도우 생성 BOOL ShowWindow(hWnd, nShowCmd) // 윈도우 화면에 출력 ------------------------------------------------------------------------ SW_HIDE 윈도우를 숨긴다. SW_MINIMIZE 윈도우를 최소화하고 활성화 시키지 않는다. SW_RESTORE..
2009. 7. 27.