CFile::LockRange
Visual Studio 2008
Locks a range of bytes in an open file, throwing an exception if the file is already locked.
virtual void LockRange( ULONGLONG dwPos, ULONGLONG dwCount );
Locking bytes in a file prevents access to those bytes by other processes. You can lock more than one region of a file, but no overlapping regions are allowed.
When you unlock the region, using the UnlockRange member function, the byte range must correspond exactly to the region that was previously locked. The LockRange function does not merge adjacent regions; if two locked regions are adjacent, you must unlock each region separately.
Note: |
|---|
This function is not available for the CMemFile-derived class. |
Note: