PIPE.IDL
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // pipe.idl : IDL source for pipe.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (pipe.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(F4D85F0D-9B1E-11D1-9504-B7BB1313C77C),
  10. dual,
  11. helpstring("IPipeIt Interface"),
  12. pointer_default(unique)
  13. ]
  14. interface IPipeIt : IDispatch
  15. {
  16. [id(1)] HRESULT Filter();
  17. };
  18. [
  19. uuid(F4D85F00-9B1E-11D1-9504-B7BB1313C77C),
  20. version(1.0),
  21. helpstring("pipe 1.0 Type Library")
  22. ]
  23. library PIPELib
  24. {
  25. importlib("stdole32.tlb");
  26. importlib("stdole2.tlb");
  27. importlib("devshl.dll");
  28. importlib("idedevdbg.pkg");
  29. [
  30. uuid(F4D85F0E-9B1E-11D1-9504-B7BB1313C77C),
  31. helpstring("Filter")
  32. ]
  33. coclass PipeIt
  34. {
  35. [default] interface IPipeIt;
  36. };
  37. };