SpecialFx.h 453 B

1234567891011121314151617181920212223242526272829303132
  1. // SpecialFx.h : PROJECT_NAME 应用程序的主头文件
  2. //
  3. #pragma once
  4. #ifndef __AFXWIN_H__
  5. #error 在包含用于 PCH 的此文件之前包含“stdafx.h”
  6. #endif
  7. #include "resource.h" // 主符号
  8. // CSpecialFxApp:
  9. // 有关此类的实现,请参阅 SpecialFx.cpp
  10. //
  11. class CSpecialFxApp : public CWinApp
  12. {
  13. public:
  14. CSpecialFxApp();
  15. // 重写
  16. public:
  17. virtual BOOL InitInstance();
  18. // 实现
  19. DECLARE_MESSAGE_MAP()
  20. virtual int ExitInstance();
  21. };
  22. extern CSpecialFxApp theApp;