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
77e3de58
Commit
77e3de58
authored
May 09, 2014
by
Vincent Povirk
Committed by
Alexandre Julliard
May 21, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Use a snapshot file when sharing storages for writing.
parent
704d1695
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
storage32.c
dlls/ole32/storage32.c
+0
-0
storage32.h
dlls/ole32/storage32.h
+6
-6
No files found.
dlls/ole32/storage32.c
View file @
77e3de58
This diff is collapsed.
Click to expand it.
dlls/ole32/storage32.h
View file @
77e3de58
...
...
@@ -251,8 +251,8 @@ struct StorageBaseImplVtbl {
HRESULT
(
*
StreamLink
)(
StorageBaseImpl
*
,
DirRef
,
DirRef
);
HRESULT
(
*
GetTransactionSig
)(
StorageBaseImpl
*
,
ULONG
*
,
BOOL
);
HRESULT
(
*
SetTransactionSig
)(
StorageBaseImpl
*
,
ULONG
);
HRESULT
(
*
LockTransaction
)(
StorageBaseImpl
*
);
HRESULT
(
*
UnlockTransaction
)(
StorageBaseImpl
*
);
HRESULT
(
*
LockTransaction
)(
StorageBaseImpl
*
,
BOOL
);
HRESULT
(
*
UnlockTransaction
)(
StorageBaseImpl
*
,
BOOL
);
};
static
inline
void
StorageBaseImpl_Destroy
(
StorageBaseImpl
*
This
)
...
...
@@ -342,14 +342,14 @@ static inline HRESULT StorageBaseImpl_SetTransactionSig(StorageBaseImpl *This,
return
This
->
baseVtbl
->
SetTransactionSig
(
This
,
value
);
}
static
inline
HRESULT
StorageBaseImpl_LockTransaction
(
StorageBaseImpl
*
This
)
static
inline
HRESULT
StorageBaseImpl_LockTransaction
(
StorageBaseImpl
*
This
,
BOOL
write
)
{
return
This
->
baseVtbl
->
LockTransaction
(
This
);
return
This
->
baseVtbl
->
LockTransaction
(
This
,
write
);
}
static
inline
HRESULT
StorageBaseImpl_UnlockTransaction
(
StorageBaseImpl
*
This
)
static
inline
HRESULT
StorageBaseImpl_UnlockTransaction
(
StorageBaseImpl
*
This
,
BOOL
write
)
{
return
This
->
baseVtbl
->
UnlockTransaction
(
This
);
return
This
->
baseVtbl
->
UnlockTransaction
(
This
,
write
);
}
/****************************************************************************
...
...
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