Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
9a8fc063
Commit
9a8fc063
authored
Aug 16, 2002
by
Huw D M Davies
Committed by
Alexandre Julliard
Aug 16, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DWORD at offset 0x40 in the header is the number of big blocks in the
small block depot chain. Better failure handling.
parent
10cd651e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
storage32.c
dlls/ole32/storage32.c
+0
-0
storage32.h
dlls/ole32/storage32.h
+8
-8
No files found.
dlls/ole32/storage32.c
View file @
9a8fc063
This diff is collapsed.
Click to expand it.
dlls/ole32/storage32.h
View file @
9a8fc063
...
...
@@ -42,6 +42,7 @@ static const ULONG OFFSET_SMALLBLOCKSIZEBITS = 0x00000020;
static
const
ULONG
OFFSET_BBDEPOTCOUNT
=
0x0000002C
;
static
const
ULONG
OFFSET_ROOTSTARTBLOCK
=
0x00000030
;
static
const
ULONG
OFFSET_SBDEPOTSTART
=
0x0000003C
;
static
const
ULONG
OFFSET_SBDEPOTCOUNT
=
0x00000040
;
static
const
ULONG
OFFSET_EXTBBDEPOTSTART
=
0x00000044
;
static
const
ULONG
OFFSET_EXTBBDEPOTCOUNT
=
0x00000048
;
static
const
ULONG
OFFSET_BBDEPOTSTART
=
0x0000004C
;
...
...
@@ -442,14 +443,15 @@ void StorageImpl_FreeBigBlock(
StorageImpl
*
This
,
ULONG
blockIndex
);
ULONG
StorageImpl_GetNextBlockInChain
(
HRESULT
StorageImpl_GetNextBlockInChain
(
StorageImpl
*
This
,
ULONG
blockIndex
);
ULONG
blockIndex
,
ULONG
*
nextBlockIndex
);
void
StorageImpl_SetNextBlockInChain
(
StorageImpl
*
This
,
ULONG
blockIndex
,
ULONG
nextBlock
);
ULONG
nextBlock
);
HRESULT
StorageImpl_LoadFileHeader
(
StorageImpl
*
This
);
...
...
@@ -843,9 +845,10 @@ void SmallBlockChainStream_Destroy(
ULONG
SmallBlockChainStream_GetHeadOfChain
(
SmallBlockChainStream
*
This
);
ULONG
SmallBlockChainStream_GetNextBlockInChain
(
HRESULT
SmallBlockChainStream_GetNextBlockInChain
(
SmallBlockChainStream
*
This
,
ULONG
blockIndex
);
ULONG
blockIndex
,
ULONG
*
nextBlockIndex
);
void
SmallBlockChainStream_SetNextBlockInChain
(
SmallBlockChainStream
*
This
,
...
...
@@ -885,6 +888,3 @@ ULONG SmallBlockChainStream_GetCount(
#endif
/* __STORAGE32_H__ */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment