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
de3ed0bb
Commit
de3ed0bb
authored
15 years ago
by
Vincent Povirk
Committed by
Alexandre Julliard
15 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Rename firstPropertyNode to storageDirEntry.
parent
61a42001
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
storage32.c
dlls/ole32/storage32.c
+7
-7
No files found.
dlls/ole32/storage32.c
View file @
de3ed0bb
...
...
@@ -236,11 +236,11 @@ struct IEnumSTATSTGImpl
LONG
ref
;
/* Reference count */
StorageImpl
*
parentStorage
;
/* Reference to the parent storage */
ULONG
firstPropertyNode
;
/* Index of the root
of the storage to enumerate */
ULONG
storageDirEntry
;
/* Directory entry
of the storage to enumerate */
/*
* The current implementation of the IEnumSTATSTGImpl class uses a stack
* to walk the
property set
s to get the content of a storage. This stack
* to walk the
directory entrie
s to get the content of a storage. This stack
* is implemented by the following 3 data members
*/
ULONG
stackSize
;
...
...
@@ -251,7 +251,7 @@ struct IEnumSTATSTGImpl
};
static
IEnumSTATSTGImpl
*
IEnumSTATSTGImpl_Construct
(
StorageImpl
*
This
,
ULONG
firstPropertyNode
);
static
IEnumSTATSTGImpl
*
IEnumSTATSTGImpl_Construct
(
StorageImpl
*
This
,
ULONG
storageDirEntry
);
static
void
IEnumSTATSTGImpl_Destroy
(
IEnumSTATSTGImpl
*
This
);
static
void
IEnumSTATSTGImpl_PushSearchNode
(
IEnumSTATSTGImpl
*
This
,
ULONG
nodeToPush
);
static
ULONG
IEnumSTATSTGImpl_PopSearchNode
(
IEnumSTATSTGImpl
*
This
,
BOOL
remove
);
...
...
@@ -3719,7 +3719,7 @@ static HRESULT WINAPI IEnumSTATSTGImpl_Reset(
*/
readSuccessful
=
StorageImpl_ReadDirEntry
(
This
->
parentStorage
,
This
->
firstPropertyNode
,
This
->
storageDirEntry
,
&
rootProperty
);
if
(
readSuccessful
)
...
...
@@ -3750,7 +3750,7 @@ static HRESULT WINAPI IEnumSTATSTGImpl_Clone(
return
E_INVALIDARG
;
newClone
=
IEnumSTATSTGImpl_Construct
(
This
->
parentStorage
,
This
->
firstPropertyNode
);
This
->
storageDirEntry
);
/*
...
...
@@ -3864,7 +3864,7 @@ static const IEnumSTATSTGVtbl IEnumSTATSTGImpl_Vtbl =
static
IEnumSTATSTGImpl
*
IEnumSTATSTGImpl_Construct
(
StorageImpl
*
parentStorage
,
ULONG
firstPropertyNode
)
ULONG
storageDirEntry
)
{
IEnumSTATSTGImpl
*
newEnumeration
;
...
...
@@ -3885,7 +3885,7 @@ static IEnumSTATSTGImpl* IEnumSTATSTGImpl_Construct(
newEnumeration
->
parentStorage
=
parentStorage
;
IStorage_AddRef
((
IStorage
*
)
newEnumeration
->
parentStorage
);
newEnumeration
->
firstPropertyNode
=
firstPropertyNode
;
newEnumeration
->
storageDirEntry
=
storageDirEntry
;
/*
* Initialize the search stack
...
...
This diff is collapsed.
Click to expand it.
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