Vincent Povirk : ole32: Rename PROPSET_BLOCK_SIZE to RAW_DIRENTRY_SIZE.

Alexandre Julliard julliard at winehq.org
Fri Nov 13 09:37:02 CST 2009


Module: wine
Branch: master
Commit: 8a8471a765a6b4310974acd948f7657d0e4b8b69
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=8a8471a765a6b4310974acd948f7657d0e4b8b69

Author: Vincent Povirk <vincent at codeweavers.com>
Date:   Wed Nov 11 10:34:45 2009 -0600

ole32: Rename PROPSET_BLOCK_SIZE to RAW_DIRENTRY_SIZE.

---

 dlls/ole32/storage32.c |   26 +++++++++++++-------------
 dlls/ole32/storage32.h |    2 +-
 2 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/dlls/ole32/storage32.c b/dlls/ole32/storage32.c
index 70a1c33..b24bcff 100644
--- a/dlls/ole32/storage32.c
+++ b/dlls/ole32/storage32.c
@@ -1099,7 +1099,7 @@ static HRESULT createDirEntry(
   ULONG       currentPropertyIndex = 0;
   ULONG       newPropertyIndex     = DIRENTRY_NULL;
   HRESULT hr = S_OK;
-  BYTE currentData[PROPSET_BLOCK_SIZE];
+  BYTE currentData[RAW_DIRENTRY_SIZE];
   WORD sizeOfNameString;
 
   do
@@ -1139,7 +1139,7 @@ static HRESULT createDirEntry(
    */
   if (FAILED(hr))
   {
-    BYTE           emptyData[PROPSET_BLOCK_SIZE];
+    BYTE           emptyData[RAW_DIRENTRY_SIZE];
     ULARGE_INTEGER newSize;
     ULONG          propertyIndex;
     ULONG          lastProperty  = 0;
@@ -1166,12 +1166,12 @@ static HRESULT createDirEntry(
      * memset the empty property in order to initialize the unused newly
      * created property
      */
-    memset(&emptyData, 0, PROPSET_BLOCK_SIZE);
+    memset(&emptyData, 0, RAW_DIRENTRY_SIZE);
 
     /*
      * initialize them
      */
-    lastProperty = storage->bigBlockSize / PROPSET_BLOCK_SIZE * blockCount;
+    lastProperty = storage->bigBlockSize / RAW_DIRENTRY_SIZE * blockCount;
 
     for(
       propertyIndex = newPropertyIndex + 1;
@@ -1206,9 +1206,9 @@ static HRESULT destroyDirEntry(
   ULONG index)
 {
   HRESULT hr;
-  BYTE emptyData[PROPSET_BLOCK_SIZE];
+  BYTE emptyData[RAW_DIRENTRY_SIZE];
 
-  memset(&emptyData, 0, PROPSET_BLOCK_SIZE);
+  memset(&emptyData, 0, RAW_DIRENTRY_SIZE);
 
   hr = StorageImpl_WriteRawDirEntry(storage, index, emptyData);
 
@@ -3000,12 +3000,12 @@ HRESULT StorageImpl_ReadRawDirEntry(StorageImpl *This, ULONG index, BYTE *buffer
   ULONG bytesRead;
 
   offset.u.HighPart = 0;
-  offset.u.LowPart  = index * PROPSET_BLOCK_SIZE;
+  offset.u.LowPart  = index * RAW_DIRENTRY_SIZE;
 
   hr = BlockChainStream_ReadAt(
                     This->rootBlockChain,
                     offset,
-                    PROPSET_BLOCK_SIZE,
+                    RAW_DIRENTRY_SIZE,
                     buffer,
                     &bytesRead);
 
@@ -3026,12 +3026,12 @@ HRESULT StorageImpl_WriteRawDirEntry(StorageImpl *This, ULONG index, const BYTE
   ULONG bytesRead;
 
   offset.u.HighPart = 0;
-  offset.u.LowPart  = index * PROPSET_BLOCK_SIZE;
+  offset.u.LowPart  = index * RAW_DIRENTRY_SIZE;
 
   hr = BlockChainStream_WriteAt(
                     This->rootBlockChain,
                     offset,
-                    PROPSET_BLOCK_SIZE,
+                    RAW_DIRENTRY_SIZE,
                     buffer,
                     &bytesRead);
 
@@ -3047,7 +3047,7 @@ HRESULT StorageImpl_WriteRawDirEntry(StorageImpl *This, ULONG index, const BYTE
  */
 void UpdateRawDirEntry(BYTE *buffer, const DirEntry *newData)
 {
-  memset(buffer, 0, PROPSET_BLOCK_SIZE);
+  memset(buffer, 0, RAW_DIRENTRY_SIZE);
 
   memcpy(
     buffer + OFFSET_PS_NAME,
@@ -3122,7 +3122,7 @@ BOOL StorageImpl_ReadDirEntry(
   ULONG          index,
   DirEntry*      buffer)
 {
-  BYTE           currentProperty[PROPSET_BLOCK_SIZE];
+  BYTE           currentProperty[RAW_DIRENTRY_SIZE];
   HRESULT        readRes;
 
   readRes = StorageImpl_ReadRawDirEntry(This, index, currentProperty);
@@ -3211,7 +3211,7 @@ BOOL StorageImpl_WriteDirEntry(
   ULONG                 index,
   const DirEntry*       buffer)
 {
-  BYTE           currentProperty[PROPSET_BLOCK_SIZE];
+  BYTE           currentProperty[RAW_DIRENTRY_SIZE];
   HRESULT        writeRes;
 
   UpdateRawDirEntry(currentProperty, buffer);
diff --git a/dlls/ole32/storage32.h b/dlls/ole32/storage32.h
index bed3a07..a2cd6fe 100644
--- a/dlls/ole32/storage32.h
+++ b/dlls/ole32/storage32.h
@@ -77,7 +77,7 @@ static const ULONG DIRENTRY_NULL             = 0xFFFFFFFF;
 #define DIRENTRY_NAME_MAX_LEN    0x20
 #define DIRENTRY_NAME_BUFFER_LEN 0x40
 
-#define PROPSET_BLOCK_SIZE 0x00000080
+#define RAW_DIRENTRY_SIZE 0x00000080
 
 /*
  * Property type of relation




More information about the wine-cvs mailing list