释义 |
CFile::UnlockRange
virtual void UnlockRange(DWORD dwPos,DWORD dwCount); throw(CFileExcrption);
参数:dwPos | 解锁范围开始处的字节偏移量。 | dwCount | 解锁范围的字节数。 |
说明: 在一个打开文件中解锁一定范围的字节。可参阅LockRange成员函数的描述了解细节。 注意:此函数对CMemFile派生类无效。
示例: // example for CFile::UnlockRange extern DWORD dwPos; extern DWORD dwCount; extern CFile cfile; cfile.UnlockRange(dwPos,dwCount);
请参阅:CFile::LockRange |