ole32: Rename propertyUniqueID to clsid.
This commit is contained in:
parent
2203264bfa
commit
cf1242e03b
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue