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

Windows编程

开发平台:

Visual C++

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