SHCreateStreamOnFileEx(3w)
NAME
SHCreateStreamOnFileEx (SHLWAPI.@)
SYNOPSIS
HRESULT SHCreateStreamOnFileEx ( LPCWSTR lpszPath, DWORD dwMode, DWORD dwAttributes, BOOL bCreate, IStream* lpTemplate, 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.
dwAttributes [In] Attributes of the file.
bCreate [In] Whether to create the file if it doesn't exist.
lpTemplate [In] Reserved, must be NULL.
lppStream [Out] Destination for created stream.
RETURNS
Success: S_OK. lppStream contains the new stream object
Failure: E_INVALIDARG if any parameter is invalid, or an HRESULT error
code.
NOTES
This function is available in Unicode only.
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/istream.c".
- Debug channel "shell".