18 lines
358 B
C
Raw Normal View History

2001-01-01 00:00:00 +01: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