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
356748e6
Commit
356748e6
authored
May 02, 2015
by
Francois Gouget
Committed by
Alexandre Julliard
May 04, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Reorder storage32 functions to avoid forward declarations.
parent
58e47c61
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
33 deletions
+9
-33
storage32.c
dlls/ole32/storage32.c
+0
-0
storage32.h
dlls/ole32/storage32.h
+9
-33
No files found.
dlls/ole32/storage32.c
View file @
356748e6
This source diff could not be displayed because it is too large. You can
view the blob
instead.
dlls/ole32/storage32.h
View file @
356748e6
...
...
@@ -416,39 +416,6 @@ struct StorageImpl
ULONG
locked_bytes
[
8
];
};
HRESULT
StorageImpl_ReadRawDirEntry
(
StorageImpl
*
This
,
ULONG
index
,
BYTE
*
buffer
)
DECLSPEC_HIDDEN
;
void
UpdateRawDirEntry
(
BYTE
*
buffer
,
const
DirEntry
*
newData
)
DECLSPEC_HIDDEN
;
HRESULT
StorageImpl_WriteRawDirEntry
(
StorageImpl
*
This
,
ULONG
index
,
const
BYTE
*
buffer
)
DECLSPEC_HIDDEN
;
HRESULT
StorageImpl_ReadDirEntry
(
StorageImpl
*
This
,
DirRef
index
,
DirEntry
*
buffer
)
DECLSPEC_HIDDEN
;
HRESULT
StorageImpl_WriteDirEntry
(
StorageImpl
*
This
,
DirRef
index
,
const
DirEntry
*
buffer
)
DECLSPEC_HIDDEN
;
BlockChainStream
*
Storage32Impl_SmallBlocksToBigBlocks
(
StorageImpl
*
This
,
SmallBlockChainStream
**
ppsbChain
)
DECLSPEC_HIDDEN
;
SmallBlockChainStream
*
Storage32Impl_BigBlocksToSmallBlocks
(
StorageImpl
*
This
,
BlockChainStream
**
ppbbChain
,
ULARGE_INTEGER
newSize
)
DECLSPEC_HIDDEN
;
/****************************************************************************
* StgStreamImpl definitions.
*
...
...
@@ -628,6 +595,15 @@ struct BlockChainStream
/*
* Methods for the BlockChainStream class.
*/
/* Returns the number of blocks that comprises this chain.
* This is not the size of the stream as the last block may not be full!
*/
static
inline
ULONG
BlockChainStream_GetCount
(
BlockChainStream
*
This
)
{
return
This
->
numBlocks
;
}
BlockChainStream
*
BlockChainStream_Construct
(
StorageImpl
*
parentStorage
,
ULONG
*
headOfStreamPlaceHolder
,
...
...
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