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.
17 lines
341 B
17 lines
341 B
#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
|