IFillLockBytes::FillAt (Windows CE 5.0)

Send Feedback

This method writes a new block of data to a specified location in the byte array.

HRESULT FillAt(ULARGE_INTEGER uIOffset,void const* pv,ULONG cb,ULONG* pcbWritten);

Parameters

  • uIOffset
    [in] The offset, expressed in number of bytes, from the first element of the byte array.
  • pv
    [in] Pointer to the data to be written at the location specified by uIOffset.
  • cb
    [in] Size of pv in bytes.
  • pcbWritten
    [out] Number of bytes that were successfully written.

Return Values

This function supports the standard return values E_OUTOFMEMORY, E_UNEXPECTED, E_INVALIDARG, and E_FAIL in addition to the following:

  • E_NOTIMPL
    The byte array does not support the FillAt method.

Remarks

The FillAt method is used for nonsequential downloading (for example, HTTP byte range requests).

In nonsequential downloading the caller specifies ranges in the byte array where various blocks of data are to be written. Subsequent calls by the compound file implementation to ILockBytes::ReadAt are passed by the byte array wrapper object's own implementation of ILockBytes to the underlying byte array.

This method is not currently implemented and will return E_NOTIMPL.

The system-supplied IFillLockBytes implementation does not support FillAt and returns E_NOTIMPL.

To determine whether the platform supports this interface, see Determining Supported COM APIs.

Requirements

OS Versions: Windows CE 3.0 and later.
Header: Objidl.h, Objidl.idl.
Link Library: Ole32.lib, Uuid.lib.

See Also

IFillLockBytes::FillAppend | IFillLockBytes Implementation | ILockBytes::ReadAt

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.