ole32: Rename PROPERTY_RELATION constants to DIRENTRY_RELATION.

This commit is contained in:
Vincent Povirk 2009-11-11 10:42:19 -06:00 committed by Alexandre Julliard
parent 5969bde0b1
commit 5838bcf801
2 changed files with 10 additions and 10 deletions

View File

@ -1422,7 +1422,7 @@ static HRESULT findTreeParent(StorageImpl *storage, ULONG storageEntry,
StorageImpl_ReadDirEntry(storage, storageEntry, parentData);
*parentEntry = storageEntry;
*relation = PROPERTY_RELATION_DIR;
*relation = DIRENTRY_RELATION_DIR;
childEntry = parentData->dirRootEntry;
@ -1442,7 +1442,7 @@ static HRESULT findTreeParent(StorageImpl *storage, ULONG storageEntry,
{
*parentData = childData;
*parentEntry = childEntry;
*relation = PROPERTY_RELATION_PREVIOUS;
*relation = DIRENTRY_RELATION_PREVIOUS;
childEntry = parentData->leftChild;
}
@ -1451,7 +1451,7 @@ static HRESULT findTreeParent(StorageImpl *storage, ULONG storageEntry,
{
*parentData = childData;
*parentEntry = childEntry;
*relation = PROPERTY_RELATION_NEXT;
*relation = DIRENTRY_RELATION_NEXT;
childEntry = parentData->rightChild;
}
@ -1951,13 +1951,13 @@ static void setPropertyLink(DirEntry *property, ULONG relation, ULONG new_target
{
switch (relation)
{
case PROPERTY_RELATION_PREVIOUS:
case DIRENTRY_RELATION_PREVIOUS:
property->leftChild = new_target;
break;
case PROPERTY_RELATION_NEXT:
case DIRENTRY_RELATION_NEXT:
property->rightChild = new_target;
break;
case PROPERTY_RELATION_DIR:
case DIRENTRY_RELATION_DIR:
property->dirRootEntry = new_target;
break;
default:

View File

@ -80,11 +80,11 @@ static const ULONG DIRENTRY_NULL = 0xFFFFFFFF;
#define RAW_DIRENTRY_SIZE 0x00000080
/*
* Property type of relation
* Type of child entry link
*/
#define PROPERTY_RELATION_PREVIOUS 0
#define PROPERTY_RELATION_NEXT 1
#define PROPERTY_RELATION_DIR 2
#define DIRENTRY_RELATION_PREVIOUS 0
#define DIRENTRY_RELATION_NEXT 1
#define DIRENTRY_RELATION_DIR 2
/*
* type constant used in files for the root storage