table of contents
other versions
- wheezy 1.4.1-4
SHIStream_Write(3w) | Wine API | SHIStream_Write(3w) |
NAME¶
SHIStream_Write (SHLWAPI.212)SYNOPSIS¶
HRESULT SHIStream_Write(
IStream* lpStream,
LPCVOID lpvSrc,
ULONG ulSize
)
DESCRIPTION¶
Call IStream_Write(3w) on a stream.PARAMS¶
lpStream [In] IStream object. lpvSrc [In] Source for data to write. ulSize [In] Size of data.RETURNS¶
Success: S_OK. ulSize bytes have been written to the stream from lpvSrc. Failure: An HRESULT error code, or E_FAIL if the write succeeded but the number of bytes written does not match.IMPLEMENTATION¶
Not declared in a Wine header. The function is either undocumented, or missing from Wine. Implemented in "dlls/shlwapi/istream.c". Debug channel "shell".Oct 2012 | Wine API |