First thing is you should be using an unsigned int for file size as a file size is never negative. Now and an invalid file size is normally the max int so in the case of using a 32 bit unsigned int it would be 0xFFFFFFFF
i.e.
const unsigned int INVALID_FILESIZE = 0xFFFFFFFF;
Also if this is on windows, windows.h defines invalid file size all ready (INVALID_FILE_SIZE)
