I have a CStdioFile object called finput, and it is used to read in data from a file and do stuff to that data.
After this has been done, I want to use the same object to read the same data (which has been modified). But at that point, it would have already reached the end of file, so it won't read anything.
How can you reset CStdioFile to start from the beginning again?
After this has been done, I want to use the same object to read the same data (which has been modified). But at that point, it would have already reached the end of file, so it won't read anything.
How can you reset CStdioFile to start from the beginning again?
Comment