Time1.h
上传用户:wymy58
上传日期:2007-01-07
资源大小:2086k
文件大小:1k
源码类别:

DirextX编程

开发平台:

Visual C++

  1. // Time1.h : main header file for the TIME1 application.
  2. #ifndef _DXGUIDE_TIME1__H
  3. #define _DXGUIDE_TIME1__H
  4. #if _MSC_VER >= 1000
  5. #pragma once
  6. #endif // _MSC_VER >= 1000
  7. #ifndef __AFXWIN_H__
  8. #error include 'stdafx.h' before including this file for PCH
  9. #endif
  10. #include "resource.h"
  11. class CTime1App : public CDirectXApp
  12. {
  13. public:
  14. CTime1App(void);
  15. virtual ~CTime1App();
  16. public:
  17. CDDDevice* m_pDDDevice;
  18. CDDSurface* m_pRenderSurface;
  19. // add your data here !
  20. __int64 m_i64StartTime;
  21. public:
  22. // add your function here !
  23. public:
  24. virtual bool GetDXInitSettings(void);
  25. virtual bool InitDXObjects(void);
  26. virtual bool DestroyDXObjects(void);
  27. virtual bool UpdateFrame(void);
  28. public:
  29. // ----
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CTime1App)
  33. //}}AFX_VIRTUAL
  34. // Implementation
  35. //{{AFX_MSG(CTime1App)
  36. //}}AFX_MSG
  37. DECLARE_MESSAGE_MAP()
  38. };
  39. #endif // _DXGUIDE_TIME1__H