mirror of https://github.com/tongzx/nt5src
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
31 lines
727 B
///////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (C) Microsoft Corporation, 2000.
|
|
//
|
|
// rtdmon.hpp
|
|
//
|
|
// RunTime Debug Monitor
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _RTDMON_HPP
|
|
#define _RTDMON_HPP
|
|
|
|
#include "debugmon.hpp"
|
|
|
|
class CD3DBase;
|
|
|
|
class RTDebugMonitor : public D3DDebugMonitor
|
|
{
|
|
protected:
|
|
CD3DBase* m_pD3DBase;
|
|
|
|
public:
|
|
RTDebugMonitor( CD3DBase* pD3DBase, BOOL bMonitorConnectionEnabled );
|
|
~RTDebugMonitor( void );
|
|
|
|
void NextEvent( UINT32 EventType );
|
|
HRESULT ProcessMonitorCommand( void );
|
|
};
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#endif // _RTDMON_HPP
|
|
|