Lines Matching defs:moveMethod
174 DWORD moveMethod;
179 case SZ_SEEK_SET: moveMethod = FILE_BEGIN; break;
180 case SZ_SEEK_CUR: moveMethod = FILE_CURRENT; break;
181 case SZ_SEEK_END: moveMethod = FILE_END; break;
184 value.LowPart = SetFilePointer(p->handle, value.LowPart, &value.HighPart, moveMethod);
196 int moveMethod;
200 case SZ_SEEK_SET: moveMethod = SEEK_SET; break;
201 case SZ_SEEK_CUR: moveMethod = SEEK_CUR; break;
202 case SZ_SEEK_END: moveMethod = SEEK_END; break;
205 res = fseek(p->file, (long)*pos, moveMethod);