SHCreateStreamWrapper(3w)
NAME
SHCreateStreamWrapper (SHLWAPI.@)
SYNOPSIS
HRESULT SHCreateStreamWrapper ( LPBYTE lpbData, DWORD dwDataLen, DWORD dwReserved, IStream** lppStream )
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.
dwReserved [In] Reserved, Must be 0.
lppStream [Out] Destination for IStream object.
RETURNS
Success: S_OK. lppStream contains the new IStream object.
Failure: E_INVALIDARG, if any parameters are invalid, E_OUTOFMEMORY if
memory allocation fails.
NOTES
The stream assumes ownership of the memory passed to it.
IMPLEMENTATION
Defined in "shlwapi.h".
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".