Leaked source code of windows server 2003
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
358 B

  1. #ifndef __hook_h__
  2. #define __hook_h__
  3. #include "rpc.h"
  4. #include "rpcndr.h"
  5. #include "windows.h"
  6. #include "ole2.h"
  7. class IWhichHook : public IUnknown
  8. {
  9. public:
  10. virtual HRESULT STDMETHODCALLTYPE Me( REFIID ) = 0;
  11. virtual HRESULT STDMETHODCALLTYPE Hooked( REFIID ) = 0;
  12. virtual HRESULT STDMETHODCALLTYPE Clear() = 0;
  13. };
  14. #endif