IStream::Read (Windows CE 5.0)
This method reads a specified number of bytes from the stream object into memory, starting at the current seek pointer.
HRESULT Read( void* pv, ULONG cb,ULONG* pcbRead );
Parameters
pv
[out] Pointer to the buffer into which the stream data is read. If an error occurs, this value is NULL.cb
[in] Number of bytes of data to attempt to read from the stream object.pcbRead
[out] Pointer to a ULONG variable that receives the actual number of bytes read from the stream object.You can set this pointer to NULL to indicate that you are not interested in this value. In this case, this method does not provide the actual number of bytes read.
Return Values
If the method succeeds, the return value is S_OK.
Remarks
To determine whether the platform supports this interface, see Determining Supported COM APIs.
Requirements
OS Versions: Windows CE 2.0 and later.
Header: Objidl.h, Objidl.idl.
Link Library: Ole32.lib, Uuid.lib.
Send Feedback on this topic to the authors