Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 217 of file setupcab.c.
Referenced by SetupIterateCabinetA(), and SetupIterateCabinetW().
{ DWORD ret; /* TRACE("(hf == %d, dist == %ld, seektype == %d)\n", hf, dist, seektype); */ if (seektype < 0 || seektype > 2) return -1; if (((ret = SetFilePointer((HANDLE) hf, dist, NULL, seektype)) != INVALID_SET_FILE_POINTER) || !GetLastError()) { /* TRACE("<-- %lu\n", ret); */ return ret; } else { /* TRACE("<-- -1\n"); */ return -1; } }