|
ILockBytes::UnlockRegion
Removes the access restriction on a previously locked range of bytes.
HRESULT UnlockRegion(
ULARGE_INTEGER libOffset,
| //Specifies the byte offset for the beginning of the range
| ULARGE_INTEGER cb,
| //Specifies the length of the range in bytes
| DWORD dwLockType
| //Specifies the access restriction previously placed on the range
| );
|
|
Parameters
libOffset
[in]Specifies the byte offset for the beginning of the range.
cb
[in]Specifies, in bytes, the length of the range that is restricted.
dwLockType
[in]Specifies the type of access restrictions previously placed on the range.
This parameter uses a value from the LOCKTYPE enumeration.
Return Values
S_OK
The byte range was unlocked.
STG_E_INVALIDFUNCTION
Locking is not supported at all or the specific type of lock requested is not
supported.
STG_E_LOCKVIOLATION
The requested unlock cannot be granted.
Comments
This method unlocks a region previously locked with the ILockBytes::LockRegion method. Locked regions must later be explicitly unlocked by calling ILockBytes::UnlockRegion with exactly the same values for the libOffset, cb, and dwLockType parameters. Two adjacent regions cannot be locked separately and then
unlocked with a single unlock call.
See Also
ILockBytes::LockRegion, LOCKTYPE
Related LinksSoftware for Delphi and C++ Builder developers Software for Visual Studio .NET developers Software for Visual Basic 6 developers Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps Win32 Programmer's Reference (win32.hlp) Win32 Multimedia Programmer's Reference (mmedia.hlp) Microsoft Windows Pen API Programmer's Reference (penapi.hlp) Microsoft Windows Sockets 2 Reference (sock2.hlp) Microsoft Windows Telephony API (TAPI) Programmer's Reference (sock2.hlp) Unix Manual Pages
|