2015.03.12. 15:51 #include #include /* : API 함수들의 원형과 사용하는 상수들이 정의되어 있음. : 유니코드 기반의 코드 작성을 위한 헤더. wchar: Unicode 2byte:16bit ex)TCHAR *szString = L"ABC" char: ASCIIcode 1byte:8bit ex) char *szString = "ABC" */ LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); //LRESULT = long: OS에게 보고용자료 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInst, LPSTR strCmdLine, int nShowCmd) // WinMai..