demoActivex.idl
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:1k
源码类别:

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // demoActivex.idl : IDL source for demoActivex.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (demoActivex.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. #include "olectl.h"
  8. [
  9. object,
  10. uuid(9BEF30B1-B316-4878-A9F5-B7EF4DC2A25F),
  11. dual,
  12. helpstring("IMyPwd Interface"),
  13. pointer_default(unique)
  14. ]
  15. interface IMyPwd : IDispatch
  16. {
  17. };
  18. [
  19. uuid(86FAC7B9-42BD-4291-820D-1E0A6D8701A6),
  20. version(1.0),
  21. helpstring("demoActivex 1.0 Type Library")
  22. ]
  23. library DEMOACTIVEXLib
  24. {
  25. importlib("stdole32.tlb");
  26. importlib("stdole2.tlb");
  27. [
  28. uuid(8831CB9F-2A99-45CB-8C1D-93D2E98328F2),
  29. helpstring("MyPwd Class")
  30. ]
  31. coclass MyPwd
  32. {
  33. [default] interface IMyPwd;
  34. };
  35. };