IMTDemo.h 432 B

12345678910111213141516171819202122232425262728
  1. // IMTDemo.h : header file for the IMTDemo application
  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. class CIMTDemoApp : public CWinApp
  9. {
  10. public:
  11. CIMTDemoApp();
  12. virtual ~CIMTDemoApp();
  13. public:
  14. virtual BOOL InitInstance();
  15. DECLARE_MESSAGE_MAP()
  16. CMutex m_Mutex;
  17. BOOL m_block;
  18. };
  19. extern CIMTDemoApp theApp;