Scroll to navigation

SHCreateStreamOnFileA(3w) Wine API SHCreateStreamOnFileA(3w)

NAME

SHCreateStreamOnFileA (SHLWAPI.@)

SYNOPSIS

HRESULT SHCreateStreamOnFileA
(
LPCSTR lpszPath,
DWORD dwMode,
IStream** lppStream
)
 

DESCRIPTION

Create a stream on a file.
 

PARAMS

lpszPath [In] Path of file to create stream on.
dwMode [In] Mode to create stream in.
lppStream [Out] Destination for created IStream object.
 

RETURNS

Success: S_OK. lppStream contains the new IStream object
Failure: E_INVALIDARG if any parameter is invalid, or an HRESULT error code
 

IMPLEMENTATION

Declared in "shlwapi.h".
Implemented in "dlls/shlwapi/istream.c".
Debug channel "shell".
Oct 2012 Wine API