windows-nt/Source/XPSP1/NT/com/oleutest/channel/hook/hook.h
2020-09-26 16:20:57 +08:00

18 lines
341 B
C++

#ifndef __hook_h__
#define __hook_h__
#include "rpc.h"
#include "rpcndr.h"
#include "windows.h"
#include "ole2.h"
class IWhichHook : public IUnknown
{
public:
virtual HRESULT STDMETHODCALLTYPE Me( REFIID ) = 0;
virtual HRESULT STDMETHODCALLTYPE Hooked( REFIID ) = 0;
virtual HRESULT STDMETHODCALLTYPE Clear() = 0;
};
#endif