The UnlockFile function unlocks a region in an open file. Unlocking a region enables other processes to access the region.
BOOL UnlockFile(
HANDLE hFile, |
// handle of file to unlock |
DWORD dwFileOffsetLow, |
// low-order word of lock region offset |
DWORD dwFileOffsetHigh, |
// high-order word of lock region offset |
DWORD nNumberOfBytesToUnlockLow, |
// low-order word of length to unlock |
DWORD nNumberOfBytesToUnlockHigh |
// high-order word of length to unlock |
); |
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
Unlocking a region of a file releases a lock on the file. The region to unlock must correspond exactly to an existing locked region. For example, two adjacent regions of a file cannot be locked separately and then unlocked as a single region that spans both locked regions.
A process should not be terminated with a portion of a file locked and a file that has locked regions should not be closed.
This function works on a file allocation table (FAT) - based file system only if the operating system is running SHARE.EXE.
file: /Techref/os/win/api/win32/func/src/f89_9.htm, 3KB, , updated: 2000/4/7 12:19, local time: 2024/11/2 22:06,
18.117.91.187:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/techref/os/win/api/win32/func/src/f89_9.htm"> UnlockFile</A> |
Did you find what you needed? |