Simple1.idl
上传用户:sz6275
上传日期:2022-06-17
资源大小:80k
文件大小:1k
源码类别:

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // Simple1.idl : IDL source for Simple1.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (Simple1.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(1F0BD295-9A78-42A4-9256-D7F45C7E4551),
  10. helpstring("IFun Interface"),
  11. pointer_default(unique)
  12. ]
  13. interface IFun : IUnknown
  14. {
  15. [helpstring("method Add")] HRESULT Add([in] long n1, [in] long n2, [out, retval] long * pVal);
  16. [helpstring("method Cat")] HRESULT Cat([in]BSTR s1,[in]BSTR s2,[out,retval] BSTR *pVal);
  17. };
  18. [
  19. uuid(C27FC488-0E8F-4E76-89E3-CC9B019D6E69),
  20. version(1.0),
  21. helpstring("Simple1 1.0 Type Library")
  22. ]
  23. library SIMPLE1Lib
  24. {
  25. importlib("stdole32.tlb");
  26. importlib("stdole2.tlb");
  27. [
  28. uuid(F8B8DEEC-9428-4C85-A4C2-301DF8AB0A9A),
  29. helpstring("Fun Class")
  30. ]
  31. coclass Fun
  32. {
  33. [default] interface IFun;
  34. };
  35. };