windows-nt/Source/XPSP1/NT/com/oleutest/channel/hook/hook.h

18 lines
341 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
#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