mirror of https://github.com/UMSKT/xpmgr.git
31 lines
667 B
Plaintext
31 lines
667 B
Plaintext
//-----------------------------------------------------------------------------
|
|
// 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
|
|
);
|
|
|
|
}
|
|
|