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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // BooksDAL.idl : IDL source for BooksDAL.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (BooksDAL.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7.     typedef struct DTOBook
  8. {
  9.    UINT BookIsnb;
  10.    BSTR BookName;
  11.    BSTR BookAuthor;
  12. }DTOBook;
  13.   
  14. [
  15. object,
  16. uuid(A15D55B0-457B-447F-8400-05146750B407),
  17. dual,
  18. helpstring("IDALMyBools Interface"),
  19. pointer_default(unique)
  20. ]
  21. interface IDALMyBools : IDispatch
  22. {
  23. [id(1), helpstring("method GetBookByIsbn")] HRESULT GetBookByIsbn([in] UINT bookisbn,[out] DTOBook** mybook);
  24. [id(2), helpstring("method QueryAllBook")] HRESULT QueryAllBook([out] DTOBook** allBook);
  25. [id(3), helpstring("method SaveBook")] HRESULT SaveBook([in] DTOBook* bookdata, [out] UINT* pResult);
  26. [id(4), helpstring("method DeleteBookById")] HRESULT DeleteBookById([in] UINT id, [out] UINT* iResult);
  27. [id(5), helpstring("method Update")] HRESULT Update([in] DTOBook* Book, [out] UINT* iResult);
  28. };
  29. [
  30. uuid(1BFDA612-BD12-4C48-A228-DF0437702079),
  31. version(1.0),
  32. helpstring("BooksDAL 1.0 Type Library")
  33. ]
  34. library BOOKSDALLib
  35. {
  36. importlib("stdole32.tlb");
  37. importlib("stdole2.tlb");
  38. [
  39. uuid(E62D5912-87D8-46BD-983A-3730881D5204),
  40. helpstring("DALMyBools Class")
  41. ]
  42. coclass DALMyBools
  43. {
  44. [default] interface IDALMyBools;
  45. };
  46. };