1234567891011121314151617181920212223242526272829 |
- //-----------------------------------------------------------------------------
- // File: rstnra.idl
- //
- // Copyright: Copyright (c) Microsoft Corporation
- //
- // Contents: OLE DB interface definition
- //
- // Comments:
- //
- //-----------------------------------------------------------------------------
- #include "idlmulti.h"
- //
-
- LOCAL_INTERFACE(0c733a71-2a1c-11ce-ade5-00aa0044773d)
-
- interface IRowsetNewRowAfter : IUnknown {
- HRESULT SetNewDataAfter(
- [in] HCHAPTER hChapter,
- [in] ULONG cbbmPrevious,
- [in, size_is(cbbmPrevious)] const BYTE * pbmPrevious,
- [in] HACCESSOR hAccessor,
- [in] BYTE * pData,
- [out] HROW * phRow
- );
- }
|