ole32: Rename StorageUtl_CopyPropertyToSTATSTG.
This commit is contained in:
parent
42a4b11e2d
commit
1bd2617c7a
|
@ -860,7 +860,7 @@ static HRESULT WINAPI StgStreamImpl_Stat(
|
|||
{
|
||||
StorageImpl *root = This->parentStorage->ancestorStorage;
|
||||
|
||||
StorageUtl_CopyPropertyToSTATSTG(pstatstg,
|
||||
StorageUtl_CopyDirEntryToSTATSTG(pstatstg,
|
||||
&curProperty,
|
||||
grfStatFlag);
|
||||
|
||||
|
|
|
@ -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,
|
||||
¤tProperty,
|
||||
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)
|
||||
|
|
|
@ -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);
|
||||
|
||||
/****************************************************************************
|
||||
|
|
Loading…
Reference in New Issue