SHCreateMemStream.3w

Langue: en

Version: Jun 2009 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

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(3w) to obtain a pointer to the function.

Implemented in "dlls/shlwapi/regstream.c".

Debug channel "shell".