// TestClient.h : PROJECT_NAME ÀÀ¿ë ÇÁ·Î±×·¥¿¡ ´ëÇÑ ÁÖ Çì´õ ÆÄÀÏÀÔ´Ï´Ù. // #pragma once #ifndef __AFXWIN_H__ #error "PCH¿¡ ´ëÇØ ÀÌ ÆÄÀÏÀ» Æ÷ÇÔÇϱâ Àü¿¡ 'stdafx.h'¸¦ Æ÷ÇÔÇÕ´Ï´Ù." #endif #include "resource.h" // ÁÖ ±âÈ£ÀÔ´Ï´Ù. // CTestClientApp: // ÀÌ Å¬·¡½ºÀÇ ±¸Çö¿¡ ´ëÇØ¼­´Â TestClient.cppÀ» ÂüÁ¶ÇϽʽÿÀ. // class CTestClientApp : public CWinAppEx { public: CTestClientApp(); // ÀçÁ¤ÀÇÀÔ´Ï´Ù. public: virtual BOOL InitInstance(); // ±¸ÇöÀÔ´Ï´Ù. DECLARE_MESSAGE_MAP() }; extern CTestClientApp theApp;