Lines Matching defs:pos
238 static BOOL MySetFilePointerEx(HANDLE hFile, LARGE_INTEGER pos, LARGE_INTEGER *newPos, DWORD dwMoveMethod)
241 return SetFilePointerEx(hFile, pos, newPos, dwMoveMethod);
243 LONG lHigh = pos.HighPart;
244 DWORD dwNewPos = SetFilePointer(hFile, pos.LowPart, &lHigh, dwMoveMethod);
266 LARGE_INTEGER pos;
267 pos.QuadPart = 0;
269 if (!MySetFilePointerEx(hFile, pos, &pos, FILE_CURRENT))
276 ret=(long)pos.LowPart;
290 LARGE_INTEGER pos;
291 pos.QuadPart = 0;
293 if (!MySetFilePointerEx(hFile, pos, &pos, FILE_CURRENT))
300 ret=pos.QuadPart;
330 LARGE_INTEGER pos;
331 pos.QuadPart = offset;
332 if (!MySetFilePointerEx(hFile, pos, NULL, dwMoveMethod))
369 LARGE_INTEGER pos;
370 pos.QuadPart = offset;
371 if (!MySetFilePointerEx(hFile, pos, NULL, dwMoveMethod))