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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // ExErro.idl : IDL source for ExErro.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (ExErro.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(1C33844A-8489-48BA-B631-CC5034929091),
  10. dual,
  11. helpstring("IMyAbc Interface"),
  12. pointer_default(unique)
  13. ]
  14. interface IMyAbc : IDispatch
  15. {
  16. [id(1), helpstring("method div")] HRESULT div([in] int a,[in] int b,[out] int* c);
  17. };
  18. [
  19. uuid(61125428-9C23-4B13-BC57-3DE1424BD57B),
  20. version(1.0),
  21. helpstring("ExErro 1.0 Type Library")
  22. ]
  23. library EXERROLib
  24. {
  25. importlib("stdole32.tlb");
  26. importlib("stdole2.tlb");
  27. [
  28. uuid(65C766B2-864C-4AAF-9D06-4AD20725BE86),
  29. helpstring("MyAbc Class")
  30. ]
  31. coclass MyAbc
  32. {
  33. [default] interface IMyAbc;
  34. };
  35. };