This commit is contained in:
2024-08-07 09:16:27 -04:00
parent fdfadd5c7e
commit 5f971cf684
5200 changed files with 731717 additions and 0 deletions

29
dvcap/Nuker.hpp Normal file
View File

@@ -0,0 +1,29 @@
#ifndef _DVCAP_NUKER_HPP_
#define _DVCAP_NUKER_HPP_
#ifndef _COMMON_DXSDK_HPP_
#include <common/dxsdk.hpp>
#endif
#ifndef _COM_COM_HPP_
#include <com/com.hpp>
#endif
#ifndef _COM_COMPOINTER_HPP_
#include <com/comptr.hpp>
#endif
class Nuker
{
public:
Nuker(ComPointer<IGraphBuilder> &graphBuilder);
virtual ~Nuker();
bool nukeFilter(ComPointer<IBaseFilter> &baseFilter,bool nukeDownstream,bool isDeviceFilter);
private:
void message(const String &message);
ComPointer<IGraphBuilder> mGraphBuilder;
};
inline
void Nuker::message(const String &message)
{
::OutputDebugString(message+String("\n"));
}
#endif