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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // ExDAL.idl : IDL source for ExDAL.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (ExDAL.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. object,
  15. uuid(F270E926-96ED-43BF-AF85-78E2A4BF3B13),
  16. dual,
  17. helpstring("IDALMyBooks Interface"),
  18. pointer_default(unique)
  19. ]
  20. interface IDALMyBooks : IDispatch
  21. {
  22. [id(1), helpstring("method GetBookByIsbn")] HRESULT GetBookByIsbn([in] UINT bookisbn,[out] DTOBook** mybook);
  23. [id(2), helpstring("method QueryAllBook")] HRESULT QueryAllBook([out] DTOBook** allBook);
  24. [id(3), helpstring("method SaveBook")] HRESULT SaveBook([in] DTOBook* bookdata, [out] UINT* pResult);
  25. [id(4), helpstring("method DeleteBookById")] HRESULT DeleteBookById([in] UINT id, [out] UINT* iResult);
  26. [id(5), helpstring("method Update")] HRESULT Update([in] DTOBook* Book, [out] UINT* iResult);
  27. [propget, id(6), helpstring("property UID")] HRESULT UID([out, retval] BSTR *pVal);
  28. [propput, id(6), helpstring("property UID")] HRESULT UID([in] BSTR newVal);
  29. [propget, id(7), helpstring("property PWD")] HRESULT PWD([out, retval] BSTR *pVal);
  30. [propput, id(7), helpstring("property PWD")] HRESULT PWD([in] BSTR newVal);
  31. [propget, id(8), helpstring("property DataSource")] HRESULT DataSource([out, retval] BSTR *pVal);
  32. [propput, id(8), helpstring("property DataSource")] HRESULT DataSource([in] BSTR newVal);
  33. };
  34. [
  35. uuid(E97DB0EC-FE58-404A-A53F-DA87F2DC6CFC),
  36. version(1.0),
  37. helpstring("ExDAL 1.0 Type Library")
  38. ]
  39. library EXDALLib
  40. {
  41. importlib("stdole32.tlb");
  42. importlib("stdole2.tlb");
  43. [
  44. uuid(7F977615-759D-4A23-AB05-92CB1DDB2172),
  45. helpstring("DALMyBooks Class")
  46. ]
  47. coclass DALMyBooks
  48. {
  49. [default] interface IDALMyBooks;
  50. };
  51. };