rstchg.idl 836 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //-----------------------------------------------------------------------------
  2. // File: rstchg.idl
  3. //
  4. // Copyright: Copyright (c) Microsoft Corporation
  5. //
  6. // Contents: OLE DB interface definition
  7. //
  8. // Comments:
  9. //
  10. //-----------------------------------------------------------------------------
  11. #include "idlmulti.h"
  12. //
  13. LOCAL_INTERFACE(0c733a05-2a1c-11ce-ade5-00aa0044773d)
  14. interface IRowsetChange : IUnknown {
  15. HRESULT DeleteRows(
  16. [in] HCHAPTER hReserved,
  17. [in] DBCOUNTITEM cRows,
  18. [in, size_is(cRows)] const HROW rghRows[],
  19. [out, size_is(cRows)] DBROWSTATUS rgRowStatus[]
  20. );
  21. HRESULT SetData(
  22. [in] HROW hRow,
  23. [in] HACCESSOR hAccessor,
  24. [in] void * pData
  25. );
  26. HRESULT InsertRow(
  27. [in] HCHAPTER hReserved,
  28. [in] HACCESSOR hAccessor,
  29. [in] void * pData,
  30. [out] HROW * phRow
  31. );
  32. }