Untitled


SUBMITTED BY: Guest

DATE: Jan. 1, 2014, 1:36 a.m.

FORMAT: Text only

SIZE: 873 Bytes

HITS: 1090

  1. // Emulator.h : Emulator ÀÀ¿ë ÇÁ·Î±×·¥¿¡ ´ëÇÑ ÁÖ Çì´õ ÆÄÀÏ
  2. //
  3. #pragma once
  4. #ifndef __AFXWIN_H__
  5. #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7. #include "resource.h" // ÁÖ ±âÈ£
  8. // CEmulatorApp:
  9. // ÀÌ Å¬·¡½ºÀÇ ±¸Çö¿¡ ´ëÇؼ­´Â Emulator.cppÀ» ÂüÁ¶ÇϽʽÿÀ.
  10. //
  11. class CEmulatorApp : public CWinApp
  12. {
  13. public:
  14. void SetActive(BOOL bActive) { m_bIsActive = bActive; };
  15. public:
  16. BOOL m_bIsActive;
  17. CString m_strAppPath;
  18. char m_szAppPath[MAX_PATH];
  19. public:
  20. CEmulatorApp();
  21. // ÀçÁ¤ÀÇ
  22. public:
  23. virtual BOOL InitInstance();
  24. // ±¸Çö
  25. afx_msg void OnAppAbout();
  26. DECLARE_MESSAGE_MAP()
  27. virtual int Run();
  28. };
  29. extern CEmulatorApp theApp;

comments powered by Disqus