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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // mysecond.idl : IDL source for mysecond.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (mysecond.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(F5E8CF08-77A5-4DDB-BE22-CD42EC21CB4D),
  10. helpstring("Isecond Interface"),
  11. pointer_default(unique)
  12. ]
  13. interface Isecond : IUnknown
  14. {
  15. [helpstring("adsf")] HRESULT add([in] int a, [in] int b, [out] int* c);
  16. };
  17. [
  18. uuid(0C592335-49BA-44AB-8E5D-265A493441AE),
  19. version(1.0),
  20. helpstring("mysecond 1.0 Type Library")
  21. ]
  22. library MYSECONDLib
  23. {
  24. importlib("stdole32.tlb");
  25. importlib("stdole2.tlb");
  26. [
  27. uuid(2B39055F-57BF-44BB-A12B-ADC6D6320CE6),
  28. helpstring("second Class")
  29. ]
  30. coclass second
  31. {
  32. [default] interface Isecond;
  33. };
  34. };