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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // MyControl.idl : IDL source for MyControl.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (MyControl.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. #include "olectl.h"
  8. [
  9. object,
  10. uuid(A87F950A-9BDC-41BF-8E0C-BCD35ACED36C),
  11. dual,
  12. helpstring("IMyPassword Interface"),
  13. pointer_default(unique)
  14. ]
  15. interface IMyPassword : IDispatch
  16. {
  17. };
  18. [
  19. uuid(A68826A9-F26E-4A0A-9849-4BA298395305),
  20. version(1.0),
  21. helpstring("MyControl 1.0 Type Library")
  22. ]
  23. library MYCONTROLLib
  24. {
  25. importlib("stdole32.tlb");
  26. importlib("stdole2.tlb");
  27. [
  28. uuid(66BD8E97-FFE2-466A-B4F7-2E6E1A50F8EE),
  29. helpstring("_IMyPasswordEvents Interface")
  30. ]
  31. dispinterface _IMyPasswordEvents
  32. {
  33. properties:
  34. methods:
  35. [id(1),helpstring("hello")] HRESULT show([in] BSTR msg);
  36. };
  37. [
  38. uuid(5767BB37-47C2-4E2A-A457-66AC49EDFF12),
  39. helpstring("MyPassword Class")
  40. ]
  41. coclass MyPassword
  42. {
  43. [default] interface IMyPassword;
  44. [default, source] dispinterface _IMyPasswordEvents;
  45. };
  46. };