SHCreateMemStream(3w)
NAME
SHCreateMemStream (SHLWAPI.12)
SYNOPSIS
IStream * SHCreateMemStream ( const BYTE* lpbData, UINT dwDataLen )
DESCRIPTION
Create an IStream object on a block of memory.
PARAMS
lpbData [In] Memory block to create the IStream object on.
dwDataLen [In] Length of data block.
RETURNS
Success: A pointer to the IStream object.
Failure: NULL, if any parameters are invalid or an error occurs.
NOTES
A copy of the memory pointed to by lpbData is made, and is freed when
the stream is released.
IMPLEMENTATION
Exported by ordinal only. Use GetProcAddress(3w) to obtain a pointer to
the function.
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/shlwapi/regstream.c".
- Debug channel "shell".