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( ...@@ -930,7 +930,7 @@ static HRESULT WINAPI StorageBaseImpl_SetClass(
&curProperty); &curProperty);
if (success) if (success)
{ {
curProperty.propertyUniqueID = *clsid; curProperty.clsid = *clsid;
success = StorageImpl_WriteDirEntry(This->ancestorStorage, success = StorageImpl_WriteDirEntry(This->ancestorStorage,
This->rootPropertySetIndex, This->rootPropertySetIndex,
...@@ -3079,7 +3079,7 @@ void UpdateRawDirEntry(BYTE *buffer, const DirEntry *newData) ...@@ -3079,7 +3079,7 @@ void UpdateRawDirEntry(BYTE *buffer, const DirEntry *newData)
StorageUtl_WriteGUID( StorageUtl_WriteGUID(
buffer, buffer,
OFFSET_PS_GUID, OFFSET_PS_GUID,
&newData->propertyUniqueID); &newData->clsid);
StorageUtl_WriteDWord( StorageUtl_WriteDWord(
buffer, buffer,
...@@ -3165,7 +3165,7 @@ BOOL StorageImpl_ReadDirEntry( ...@@ -3165,7 +3165,7 @@ BOOL StorageImpl_ReadDirEntry(
StorageUtl_ReadGUID( StorageUtl_ReadGUID(
currentProperty, currentProperty,
OFFSET_PS_GUID, OFFSET_PS_GUID,
&buffer->propertyUniqueID); &buffer->clsid);
StorageUtl_ReadDWord( StorageUtl_ReadDWord(
currentProperty, currentProperty,
...@@ -4094,7 +4094,7 @@ void StorageUtl_CopyDirEntryToSTATSTG( ...@@ -4094,7 +4094,7 @@ void StorageUtl_CopyDirEntryToSTATSTG(
*/ */
destination->grfMode = 0; destination->grfMode = 0;
destination->grfLocksSupported = 0; destination->grfLocksSupported = 0;
destination->clsid = source->propertyUniqueID; destination->clsid = source->clsid;
destination->grfStateBits = 0; destination->grfStateBits = 0;
destination->reserved = 0; destination->reserved = 0;
} }
......
...@@ -133,7 +133,7 @@ struct DirEntry ...@@ -133,7 +133,7 @@ struct DirEntry
ULONG leftChild; ULONG leftChild;
ULONG rightChild; ULONG rightChild;
ULONG dirRootEntry; ULONG dirRootEntry;
GUID propertyUniqueID; GUID clsid;
FILETIME ctime; FILETIME ctime;
FILETIME mtime; FILETIME mtime;
ULONG startingBlock; 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