Windows API에 쓰이는 기본 서식입니다. #include //윈도우 헤더파일 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); // CALLBACK 매크로 HINSTANCE g_hinst; // 인스턴스 핸들 LPCTSTR lpszClass = TEXT("First File"); // 제목 표시줄에 표시되는 내용 int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszCmdParam, int nCmdShow) // MAIN 함수 { HWND hWnd; // 윈도우 핸들 선언 MSG Message; // 메세지 구조체 변수 선언 WNDCLASS WndClass; // Wi..