Home | History | Annotate | Download | only in C

Lines Matching defs:moveMethod

172   DWORD moveMethod;

177 case SZ_SEEK_SET: moveMethod = FILE_BEGIN; break;
178 case SZ_SEEK_CUR: moveMethod = FILE_CURRENT; break;
179 case SZ_SEEK_END: moveMethod = FILE_END; break;
182 value.LowPart = SetFilePointer(p->handle, value.LowPart, &value.HighPart, moveMethod);
194 int moveMethod;
198 case SZ_SEEK_SET: moveMethod = SEEK_SET; break;
199 case SZ_SEEK_CUR: moveMethod = SEEK_CUR; break;
200 case SZ_SEEK_END: moveMethod = SEEK_END; break;
203 res = fseek(p->file, (long)*pos, moveMethod);