NAME

SHCreateMemStream  (SHLWAPI.12)

SYNOPSIS

 IStream * SHCreateMemStream
 (
  LPBYTE lpbData,
  DWORD  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 to obtain a pointer to the function.

Implemented in "dlls/shlwapi/regstream.c". source.winehq.org/source/dlls/shlwapi/regstream.c

Debug channel "shell".


Copyright © 2006 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Oct 2006.