Lines Matching refs:dwMoveMethod
241 …OOL MySetFilePointerEx(HANDLE hFile, LARGE_INTEGER pos, LARGE_INTEGER *newPos, DWORD dwMoveMethod) in MySetFilePointerEx() argument
244 return SetFilePointerEx(hFile, pos, newPos, dwMoveMethod); in MySetFilePointerEx()
247 DWORD dwNewPos = SetFilePointer(hFile, pos.LowPart, &lHigh, dwMoveMethod); in MySetFilePointerEx()
311 DWORD dwMoveMethod=0xFFFFFFFF; in win32_seek_file_func() local
320 dwMoveMethod = FILE_CURRENT; in win32_seek_file_func()
323 dwMoveMethod = FILE_END; in win32_seek_file_func()
326 dwMoveMethod = FILE_BEGIN; in win32_seek_file_func()
335 if (!MySetFilePointerEx(hFile, pos, NULL, dwMoveMethod)) in win32_seek_file_func()
349 DWORD dwMoveMethod=0xFFFFFFFF; in win32_seek64_file_func() local
359 dwMoveMethod = FILE_CURRENT; in win32_seek64_file_func()
362 dwMoveMethod = FILE_END; in win32_seek64_file_func()
365 dwMoveMethod = FILE_BEGIN; in win32_seek64_file_func()
374 if (!MySetFilePointerEx(hFile, pos, NULL, dwMoveMethod)) in win32_seek64_file_func()