shlwapi: Fix prototype of SHCreateMemStream.
This commit is contained in:
parent
ac573f6aba
commit
2d41762553
|
@ -487,7 +487,7 @@ IStream * WINAPI SHOpenRegStreamW(HKEY hkey, LPCWSTR pszSubkey,
|
|||
* A copy of the memory pointed to by lpbData is made, and is freed
|
||||
* when the stream is released.
|
||||
*/
|
||||
IStream * WINAPI SHCreateMemStream(LPBYTE lpbData, DWORD dwDataLen)
|
||||
IStream * WINAPI SHCreateMemStream(const BYTE *lpbData, UINT dwDataLen)
|
||||
{
|
||||
IStream *iStrmRet = NULL;
|
||||
|
||||
|
|
Loading…
Reference in New Issue