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

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,[out] UINT* Numbers);
  25. [id(3), helpstring("method SaveBook")] HRESULT SaveBook([in] DTOBook* bookdata, [out] UINT* pResult);
  26. [id(4), helpstring("method DeleteBookById")] HRESULT DeleteBo);
  27. [id(5), helpstring("method Update")] HRESULT Update([in] DTOBook* Book, [out] UINT* iResult);okById([in] UINT id, [out] UINT* iResult
  28. [propget, id(7), helpstring("property UID")] HRESULT UID([out, retval] BSTR *pVal);
  29. [propput, id(7), helpstring("property UID")] HRESULT UID([in] BSTR newVal);
  30. [propget, id(8), helpstring("property PWD")] HRESULT PWD([out, retval] BSTR *pVal);
  31. [propput, id(8), helpstring("property PWD")] HRESULT PWD([in] BSTR newVal);
  32. [propget, id(9), helpstring("property DataSource")] HRESULT DataSource([out, retval] BSTR *pVal);
  33. [propput, id(9), helpstring("property DataSource")] HRESULT DataSource([in] BSTR newVal);
  34. };
  35. [
  36. uuid(1BFDA612-BD12-4C48-A228-DF0437702079),
  37. version(1.0),
  38. helpstring("BooksDAL 1.0 Type Library")
  39. ]
  40. library BOOKSDALLib
  41. {
  42. importlib("stdole32.tlb");
  43. importlib("stdole2.tlb");
  44. [
  45. uuid(E62D5912-87D8-46BD-983A-3730881D5204),
  46. helpstring("DALMyBools Class")
  47. ]
  48. coclass DALMyBools
  49. {
  50. [default] interface IDALMyBools;
  51. };
  52. };