ole32: Rename StorageUtl_CopyPropertyToSTATSTG.

This commit is contained in:
Vincent Povirk 2009-11-10 14:49:47 -06:00 committed by Alexandre Julliard
parent 42a4b11e2d
commit 1bd2617c7a
3 changed files with 5 additions and 5 deletions

View File

@ -860,7 +860,7 @@ static HRESULT WINAPI StgStreamImpl_Stat(
{
StorageImpl *root = This->parentStorage->ancestorStorage;
StorageUtl_CopyPropertyToSTATSTG(pstatstg,
StorageUtl_CopyDirEntryToSTATSTG(pstatstg,
&curProperty,
grfStatFlag);

View File

@ -657,7 +657,7 @@ static HRESULT WINAPI StorageBaseImpl_Stat(
if (readSuccessful)
{
StorageUtl_CopyPropertyToSTATSTG(
StorageUtl_CopyDirEntryToSTATSTG(
pstatstg,
&curProperty,
grfStatFlag);
@ -3621,7 +3621,7 @@ static HRESULT WINAPI IEnumSTATSTGImpl_Next(
/*
* Copy the information to the return buffer.
*/
StorageUtl_CopyPropertyToSTATSTG(currentReturnStruct,
StorageUtl_CopyDirEntryToSTATSTG(currentReturnStruct,
&currentProperty,
STATFLAG_DEFAULT);
@ -4050,7 +4050,7 @@ void StorageUtl_WriteGUID(BYTE* buffer, ULONG offset, const GUID* value)
memcpy(buffer+offset+8, value->Data4, sizeof(value->Data4));
}
void StorageUtl_CopyPropertyToSTATSTG(
void StorageUtl_CopyDirEntryToSTATSTG(
STATSTG* destination,
const DirEntry* source,
int statFlags)

View File

@ -419,7 +419,7 @@ void StorageUtl_WriteULargeInteger(BYTE* buffer, ULONG offset,
const ULARGE_INTEGER *value);
void StorageUtl_ReadGUID(const BYTE* buffer, ULONG offset, GUID* value);
void StorageUtl_WriteGUID(BYTE* buffer, ULONG offset, const GUID* value);
void StorageUtl_CopyPropertyToSTATSTG(STATSTG* destination, const DirEntry* source,
void StorageUtl_CopyDirEntryToSTATSTG(STATSTG* destination, const DirEntry* source,
int statFlags);
/****************************************************************************