Scroll to navigation

SHIStream_Read(3w) Wine API SHIStream_Read(3w)

NAME

SHIStream_Read (SHLWAPI.184)

SYNOPSIS

HRESULT SHIStream_Read
(
IStream* lpStream,
LPVOID lpvDest,
ULONG ulSize
)
 

DESCRIPTION

Call IStream_Read(3w) on a stream.
 

PARAMS

lpStream [In] IStream object.
lpvDest [Out] Destination for data read.
ulSize [In] Size of data to read.
 

RETURNS

Success: S_OK. ulSize bytes have been read from the stream into lpvDest.
Failure: An HRESULT error code, or E_FAIL if the read succeeded but the number of bytes read does not match.
 

IMPLEMENTATION

Not declared in a Wine header. The function is either undocumented, or missing from Wine.
Implemented in "dlls/shlwapi/istream.c".
Debug channel "shell".
Oct 2012 Wine API