#include LRESULT CALLBACK WndProc( HWND hwnd , UINT message , WPARAM wParam , LPARAM lParam ) ; int WINAPI WinMain( HINSTANCE hInstance , HINSTANCE hPrevInstance , LPTSTR lpszCmdLine , int nCmdShow) { static char szAppName[] = "윈도우 클래스 이름"; static char szTitleName[] = "타이틀바에 출력 내용" ; WNDCLASS WndClass ; HWND hwnd; MSG msg; /*윈도우 클래스 구조체 생성*/ WndClass.style = CS_HREDRAW | CS_VREDRAW ; WndClass.lp..