Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
cf1242e0
Commit
cf1242e0
authored
Nov 12, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
Nov 16, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Rename propertyUniqueID to clsid.
parent
2203264b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
storage32.c
dlls/ole32/storage32.c
+4
-4
storage32.h
dlls/ole32/storage32.h
+1
-1
No files found.
dlls/ole32/storage32.c
View file @
cf1242e0
...
...
@@ -930,7 +930,7 @@ static HRESULT WINAPI StorageBaseImpl_SetClass(
&
curProperty
);
if
(
success
)
{
curProperty
.
propertyUniqueID
=
*
clsid
;
curProperty
.
clsid
=
*
clsid
;
success
=
StorageImpl_WriteDirEntry
(
This
->
ancestorStorage
,
This
->
rootPropertySetIndex
,
...
...
@@ -3079,7 +3079,7 @@ void UpdateRawDirEntry(BYTE *buffer, const DirEntry *newData)
StorageUtl_WriteGUID
(
buffer
,
OFFSET_PS_GUID
,
&
newData
->
propertyUniqueID
);
&
newData
->
clsid
);
StorageUtl_WriteDWord
(
buffer
,
...
...
@@ -3165,7 +3165,7 @@ BOOL StorageImpl_ReadDirEntry(
StorageUtl_ReadGUID
(
currentProperty
,
OFFSET_PS_GUID
,
&
buffer
->
propertyUniqueID
);
&
buffer
->
clsid
);
StorageUtl_ReadDWord
(
currentProperty
,
...
...
@@ -4094,7 +4094,7 @@ void StorageUtl_CopyDirEntryToSTATSTG(
*/
destination
->
grfMode
=
0
;
destination
->
grfLocksSupported
=
0
;
destination
->
clsid
=
source
->
propertyUniqueID
;
destination
->
clsid
=
source
->
clsid
;
destination
->
grfStateBits
=
0
;
destination
->
reserved
=
0
;
}
...
...
dlls/ole32/storage32.h
View file @
cf1242e0
...
...
@@ -133,7 +133,7 @@ struct DirEntry
ULONG
leftChild
;
ULONG
rightChild
;
ULONG
dirRootEntry
;
GUID
propertyUniqueID
;
GUID
clsid
;
FILETIME
ctime
;
FILETIME
mtime
;
ULONG
startingBlock
;
...
...
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