Commit cf1242e0 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

ole32: Rename propertyUniqueID to clsid.

parent 2203264b
......@@ -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;
}
......
......@@ -133,7 +133,7 @@ struct DirEntry
ULONG leftChild;
ULONG rightChild;
ULONG dirRootEntry;
GUID propertyUniqueID;
GUID clsid;
FILETIME ctime;
FILETIME mtime;
ULONG startingBlock;
......
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