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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // Mycom.idl : IDL source for Mycom.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (Mycom.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(91E9CE14-AB34-47A7-9071-94EAB0C2CB69),
  10. helpstring("Imyfirst Interface"),
  11. pointer_default(unique)
  12. ]
  13. interface Imyfirst : IUnknown
  14. {
  15. [helpstring("method add")] HRESULT add([in] int a,[in] int b,[out] int* c);
  16. [helpstring("method sub")] HRESULT sub([in] int a,[in] int b,[in] int* c);
  17. };
  18. [
  19. uuid(99167DC9-9A9B-4B44-94DC-5FC6698C3C9D),
  20. version(1.0),
  21. helpstring("Mycom 1.0 Type Library")
  22. ]
  23. library MYCOMLib
  24. {
  25. importlib("stdole32.tlb");
  26. importlib("stdole2.tlb");
  27. [
  28. uuid(5032CCB8-EB73-4B87-93CB-3D46CA2CD43E),
  29. helpstring("myfirst Class")
  30. ]
  31. coclass myfirst
  32. {
  33. [default] interface Imyfirst;
  34. };
  35. };