Commit 56622de9 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

ole32: Move the low-level functionality of ReadProperty to a new function.

parent 5d550cdc
......@@ -3046,6 +3046,32 @@ static void StorageImpl_SaveFileHeader(
}
/******************************************************************************
* StorageImpl_ReadRawDirEntry
*
* This method will read the raw data from a directory entry in the file.
*
* buffer must be PROPSET_BLOCK_SIZE bytes long.
*/
HRESULT StorageImpl_ReadRawDirEntry(StorageImpl *This, ULONG index, BYTE *buffer)
{
ULARGE_INTEGER offset;
HRESULT hr;
ULONG bytesRead;
offset.u.HighPart = 0;
offset.u.LowPart = index * PROPSET_BLOCK_SIZE;
hr = BlockChainStream_ReadAt(
This->rootBlockChain,
offset,
PROPSET_BLOCK_SIZE,
buffer,
&bytesRead);
return hr;
}
/******************************************************************************
* Storage32Impl_ReadProperty
*
* This method will read the specified property from the property chain.
......@@ -3056,19 +3082,9 @@ BOOL StorageImpl_ReadProperty(
StgProperty* buffer)
{
BYTE currentProperty[PROPSET_BLOCK_SIZE];
ULARGE_INTEGER offsetInPropSet;
HRESULT readRes;
ULONG bytesRead;
offsetInPropSet.u.HighPart = 0;
offsetInPropSet.u.LowPart = index * PROPSET_BLOCK_SIZE;
readRes = BlockChainStream_ReadAt(
This->rootBlockChain,
offsetInPropSet,
PROPSET_BLOCK_SIZE,
currentProperty,
&bytesRead);
readRes = StorageImpl_ReadRawDirEntry(This, index, currentProperty);
if (SUCCEEDED(readRes))
{
......
......@@ -290,6 +290,11 @@ struct StorageImpl
BigBlockFile* bigBlockFile;
};
HRESULT StorageImpl_ReadRawDirEntry(
StorageImpl *This,
ULONG index,
BYTE *buffer);
BOOL StorageImpl_ReadProperty(
StorageImpl* This,
ULONG index,
......
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