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

Windows编程

开发平台:

Visual C++

  1. // wins.idl : IDL source for wins.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (wins.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(1CDA065E-8D5F-11D1-82FC-00A0C91BC942),
  10. dual,
  11. helpstring("IWindowsList Interface"),
  12. pointer_default(unique)
  13. ]
  14. interface IWindowsList : IDispatch
  15. {
  16. [id(1)] HRESULT WindowsManager();
  17. [id(2)] HRESULT MinWin();
  18. [id(3)] HRESULT SetLimit();
  19. [id(4)] HRESULT SetVisible();
  20. [id(5)] HRESULT CloseDebugWnds();
  21. };
  22. [
  23. uuid(1CDA0651-8D5F-11D1-82FC-00A0C91BC942),
  24. version(1.0),
  25. helpstring("wins 1.0 Type Library")
  26. ]
  27. library WINSLib
  28. {
  29. importlib("stdole32.tlb");
  30. importlib("stdole2.tlb");
  31. importlib("devshl.dll");
  32. importlib("idedevdbg.pkg");
  33. [
  34. uuid(1CDA065F-8D5F-11D1-82FC-00A0C91BC942),
  35. helpstring("Windows List")
  36. ]
  37. coclass WindowsList
  38. {
  39. [default] interface IWindowsList;
  40. };
  41. };