ole32: Rename propertyUniqueID to clsid.

This commit is contained in:
Vincent Povirk 2009-11-12 13:10:17 -06:00 committed by Alexandre Julliard
parent 2203264bfa
commit cf1242e03b
2 changed files with 5 additions and 5 deletions

View File

@ -930,7 +930,7 @@ static HRESULT WINAPI StorageBaseImpl_SetClass(
&curProperty);
if (success)
{
curProperty.propertyUniqueID = *clsid;
curProperty.clsid = *clsid;
success = StorageImpl_WriteDirEntry(This->ancestorStorage,
This->rootPropertySetIndex,
@ -3079,7 +3079,7 @@ void UpdateRawDirEntry(BYTE *buffer, const DirEntry *newData)
StorageUtl_WriteGUID(
buffer,
OFFSET_PS_GUID,
&newData->propertyUniqueID);
&newData->clsid);
StorageUtl_WriteDWord(
buffer,
@ -3165,7 +3165,7 @@ BOOL StorageImpl_ReadDirEntry(
StorageUtl_ReadGUID(
currentProperty,
OFFSET_PS_GUID,
&buffer->propertyUniqueID);
&buffer->clsid);
StorageUtl_ReadDWord(
currentProperty,
@ -4094,7 +4094,7 @@ void StorageUtl_CopyDirEntryToSTATSTG(
*/
destination->grfMode = 0;
destination->grfLocksSupported = 0;
destination->clsid = source->propertyUniqueID;
destination->clsid = source->clsid;
destination->grfStateBits = 0;
destination->reserved = 0;
}

View File

@ -133,7 +133,7 @@ struct DirEntry
ULONG leftChild;
ULONG rightChild;
ULONG dirRootEntry;
GUID propertyUniqueID;
GUID clsid;
FILETIME ctime;
FILETIME mtime;
ULONG startingBlock;