Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
727 B

  1. ///////////////////////////////////////////////////////////////////////////////
  2. // Copyright (C) Microsoft Corporation, 2000.
  3. //
  4. // rtdmon.hpp
  5. //
  6. // RunTime Debug Monitor
  7. //
  8. ///////////////////////////////////////////////////////////////////////////////
  9. #ifndef _RTDMON_HPP
  10. #define _RTDMON_HPP
  11. #include "debugmon.hpp"
  12. class CD3DBase;
  13. class RTDebugMonitor : public D3DDebugMonitor
  14. {
  15. protected:
  16. CD3DBase* m_pD3DBase;
  17. public:
  18. RTDebugMonitor( CD3DBase* pD3DBase, BOOL bMonitorConnectionEnabled );
  19. ~RTDebugMonitor( void );
  20. void NextEvent( UINT32 EventType );
  21. HRESULT ProcessMonitorCommand( void );
  22. };
  23. ///////////////////////////////////////////////////////////////////////////////
  24. #endif // _RTDMON_HPP