rstnra.idl 666 B

1234567891011121314151617181920212223242526272829
  1. //-----------------------------------------------------------------------------
  2. // File: rstnra.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(0c733a71-2a1c-11ce-ade5-00aa0044773d)
  14. interface IRowsetNewRowAfter : IUnknown {
  15. HRESULT SetNewDataAfter(
  16. [in] HCHAPTER hChapter,
  17. [in] ULONG cbbmPrevious,
  18. [in, size_is(cbbmPrevious)] const BYTE * pbmPrevious,
  19. [in] HACCESSOR hAccessor,
  20. [in] BYTE * pData,
  21. [out] HROW * phRow
  22. );
  23. }