mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 14:10:32 +00:00
ole32: Don't use real synchronous locks for storage synchronization.
This commit is contained in:
parent
06b735ae76
commit
c8791edbdf
@ -346,24 +346,6 @@ static HRESULT WINAPI FileLockBytesImpl_LockRegion(ILockBytes* iface,
|
||||
return get_lock_error();
|
||||
}
|
||||
|
||||
HRESULT FileLockBytesImpl_LockRegionSync(ILockBytes* iface,
|
||||
ULARGE_INTEGER libOffset, ULARGE_INTEGER cb)
|
||||
{
|
||||
FileLockBytesImpl* This = impl_from_ILockBytes(iface);
|
||||
OVERLAPPED ol;
|
||||
|
||||
if (iface->lpVtbl != &FileLockBytesImpl_Vtbl)
|
||||
return E_NOTIMPL;
|
||||
|
||||
ol.hEvent = 0;
|
||||
ol.u.s.Offset = libOffset.u.LowPart;
|
||||
ol.u.s.OffsetHigh = libOffset.u.HighPart;
|
||||
|
||||
if (LockFileEx(This->hfile, LOCKFILE_EXCLUSIVE_LOCK, 0, cb.u.LowPart, cb.u.HighPart, &ol))
|
||||
return S_OK;
|
||||
return get_lock_error();
|
||||
}
|
||||
|
||||
static HRESULT WINAPI FileLockBytesImpl_UnlockRegion(ILockBytes* iface,
|
||||
ULARGE_INTEGER libOffset, ULARGE_INTEGER cb, DWORD dwLockType)
|
||||
{
|
||||
|
@ -2876,11 +2876,6 @@ static HRESULT StorageImpl_LockRegionSync(StorageImpl *This, ULARGE_INTEGER offs
|
||||
HRESULT hr;
|
||||
int delay = 0;
|
||||
|
||||
/* if it's a FileLockBytesImpl use LockFileEx in blocking mode */
|
||||
if (SUCCEEDED(FileLockBytesImpl_LockRegionSync(This->lockBytes, offset, cb)))
|
||||
return S_OK;
|
||||
|
||||
/* otherwise we have to fake it based on an async lock */
|
||||
do
|
||||
{
|
||||
hr = ILockBytes_LockRegion(This->lockBytes, offset, cb, dwLockType);
|
||||
|
@ -159,8 +159,6 @@ struct DirEntry
|
||||
|
||||
HRESULT FileLockBytesImpl_Construct(HANDLE hFile, DWORD openFlags, LPCWSTR pwcsName, ILockBytes **pLockBytes) DECLSPEC_HIDDEN;
|
||||
|
||||
HRESULT FileLockBytesImpl_LockRegionSync(ILockBytes* iface, ULARGE_INTEGER libOffset, ULARGE_INTEGER cb) DECLSPEC_HIDDEN;
|
||||
|
||||
/*************************************************************************
|
||||
* Ole Convert support
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user