Commit e70de9db authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

ole32: Fix the name of PropertyStorage_WriteWStringToStream().

parent 529d09d3
...@@ -1738,7 +1738,7 @@ static void PropertyStorage_MakePropertyIdOffset(DWORD propid, DWORD dwOffset, ...@@ -1738,7 +1738,7 @@ static void PropertyStorage_MakePropertyIdOffset(DWORD propid, DWORD dwOffset,
offsetof(PROPERTYIDOFFSET, dwOffset), dwOffset); offsetof(PROPERTYIDOFFSET, dwOffset), dwOffset);
} }
static inline HRESULT PropertStorage_WriteWStringToStream(IStream *stm, static inline HRESULT PropertyStorage_WriteWStringToStream(IStream *stm,
LPCWSTR str, DWORD len, DWORD *written) LPCWSTR str, DWORD len, DWORD *written)
{ {
#ifdef WORDS_BIGENDIAN #ifdef WORDS_BIGENDIAN
...@@ -1788,7 +1788,7 @@ static BOOL PropertyStorage_DictionaryWriter(const void *key, ...@@ -1788,7 +1788,7 @@ static BOOL PropertyStorage_DictionaryWriter(const void *key,
if (FAILED(c->hr)) if (FAILED(c->hr))
goto end; goto end;
c->bytesWritten += sizeof(DWORD); c->bytesWritten += sizeof(DWORD);
c->hr = PropertStorage_WriteWStringToStream(This->stm, key, keyLen, c->hr = PropertyStorage_WriteWStringToStream(This->stm, key, keyLen,
&count); &count);
if (FAILED(c->hr)) if (FAILED(c->hr))
goto end; goto end;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment