Suppose I have a file on disk, and then create its handle using CreateFileits mapping object using CreateFileMappingits mapping using MapViewOfFile. The beginning of the file address in virtual memory is stored in a pointer StartPtrthat was returned by the function MapViewOfFile. If CreateFileMappingI use ReadFilesome bytes to read before calling the function N, will there be a pointer returned by a MapViewOfFileperiod ( StartPtr+ N)?
source
share