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

ole32: Rename stream.ownerProperty to dirEntry.

parent 4ba13cb9
......@@ -209,7 +209,7 @@ static void StgStreamImpl_OpenBlockChain(
* Read the information from the property.
*/
readSuccessful = StorageImpl_ReadDirEntry(This->parentStorage->ancestorStorage,
This->ownerProperty,
This->dirEntry,
&curProperty);
if (readSuccessful)
......@@ -233,14 +233,14 @@ static void StgStreamImpl_OpenBlockChain(
This->smallBlockChain = SmallBlockChainStream_Construct(
This->parentStorage->ancestorStorage,
NULL,
This->ownerProperty);
This->dirEntry);
}
else
{
This->bigBlockChain = BlockChainStream_Construct(
This->parentStorage->ancestorStorage,
NULL,
This->ownerProperty);
This->dirEntry);
}
}
}
......@@ -591,14 +591,14 @@ static HRESULT WINAPI StgStreamImpl_SetSize(
This->smallBlockChain = SmallBlockChainStream_Construct(
This->parentStorage->ancestorStorage,
NULL,
This->ownerProperty);
This->dirEntry);
}
else
{
This->bigBlockChain = BlockChainStream_Construct(
This->parentStorage->ancestorStorage,
NULL,
This->ownerProperty);
This->dirEntry);
}
}
......@@ -606,7 +606,7 @@ static HRESULT WINAPI StgStreamImpl_SetSize(
* Read this stream's property to see if it's small blocks or big blocks
*/
Success = StorageImpl_ReadDirEntry(This->parentStorage->ancestorStorage,
This->ownerProperty,
This->dirEntry,
&curProperty);
/*
* Determine if we have to switch from small to big blocks or vice versa
......@@ -651,7 +651,7 @@ static HRESULT WINAPI StgStreamImpl_SetSize(
* Write the new information about this stream to the property
*/
Success = StorageImpl_ReadDirEntry(This->parentStorage->ancestorStorage,
This->ownerProperty,
This->dirEntry,
&curProperty);
curProperty.size.u.HighPart = libNewSize.u.HighPart;
......@@ -660,7 +660,7 @@ static HRESULT WINAPI StgStreamImpl_SetSize(
if (Success)
{
StorageImpl_WriteDirEntry(This->parentStorage->ancestorStorage,
This->ownerProperty,
This->dirEntry,
&curProperty);
}
......@@ -853,7 +853,7 @@ static HRESULT WINAPI StgStreamImpl_Stat(
* Read the information from the property.
*/
readSuccessful = StorageImpl_ReadDirEntry(This->parentStorage->ancestorStorage,
This->ownerProperty,
This->dirEntry,
&curProperty);
if (readSuccessful)
......@@ -910,7 +910,7 @@ static HRESULT WINAPI StgStreamImpl_Clone(
if ( ppstm == 0 )
return STG_E_INVALIDPOINTER;
new_stream = StgStreamImpl_Construct (This->parentStorage, This->grfMode, This->ownerProperty);
new_stream = StgStreamImpl_Construct (This->parentStorage, This->grfMode, This->dirEntry);
if (!new_stream)
return STG_E_INSUFFICIENTMEMORY; /* Currently the only reason for new_stream=0 */
......@@ -962,7 +962,7 @@ static const IStreamVtbl StgStreamImpl_Vtbl =
StgStreamImpl* StgStreamImpl_Construct(
StorageBaseImpl* parentStorage,
DWORD grfMode,
ULONG ownerProperty)
ULONG dirEntry)
{
StgStreamImpl* newStream;
......@@ -991,7 +991,7 @@ StgStreamImpl* StgStreamImpl_Construct(
*/
newStream->grfMode = grfMode;
newStream->ownerProperty = ownerProperty;
newStream->dirEntry = dirEntry;
/*
* Start the stream at the beginning.
......
......@@ -827,7 +827,7 @@ static HRESULT WINAPI StorageBaseImpl_CreateStream(
LIST_FOR_EACH_ENTRY(strm, &This->strmHead, StgStreamImpl, StrmListEntry)
{
if (strm->ownerProperty == foundPropertyIndex)
if (strm->dirEntry == foundPropertyIndex)
{
TRACE("Stream deleted %p\n", strm);
strm->parentStorage = NULL;
......
......@@ -352,9 +352,9 @@ struct StgStreamImpl
DWORD grfMode;
/*
* Index of the property that owns (points to) this stream.
* Index of the directory entry that owns (points to) this stream.
*/
ULONG ownerProperty;
ULONG dirEntry;
/*
* Helper variable that contains the size of the stream
......@@ -381,7 +381,7 @@ struct StgStreamImpl
StgStreamImpl* StgStreamImpl_Construct(
StorageBaseImpl* parentStorage,
DWORD grfMode,
ULONG ownerProperty);
ULONG dirEntry);
/******************************************************************************
......
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