channelhook.idl
上传用户:bjlvip
上传日期:2010-02-08
资源大小:744k
文件大小:0k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // channelhook.idl
  2. import "unknwn.idl";
  3. [ object, uuid(11000001-0000-0000-0000-000000000001) ]
  4. interface IClientInfo : IUnknown
  5. {
  6. HRESULT GetClientComputerName([out, string] BSTR* bstr);
  7. }
  8. [ uuid(11000003-0000-0000-0000-000000000001),
  9.   version(1.0) ]
  10. library ChannelHook
  11. {
  12. importlib("stdole32.tlb");
  13. interface IClientInfo;
  14. [ uuid(11000002-0000-0000-0000-000000000001) ]
  15. coclass ClientChannelHook
  16. {
  17. interface IClientInfo;
  18. }
  19. };