UpdateDebugInfoFile

The UpdateDebugInfoFile function takes the information stored in NtHeaders and updates the corresponding fields in the .DBG file.

BOOL UpdateDebugInfoFile(

IN LPSTR ImageFileName,  
IN LPSTR SymbolPath,  
OUT LPSTR DebugFilePath,  
IN OUT PIMAGE_NT_HEADERS NtHeaders  
);  

Parameters

ImageFileName

The name of the image that is now out of date with respect to its symbol file.

SymbolPath

The path in which to look for the symbol file.

DebugFilePath

The symbol file that was updated.

NtHeaders

The new NT headers.

Return Values

If the function succeeds, the return value is TRUE.

If the function fails, then the return value is FALSE. To retrieve extended error information, call GetLastError.

Remarks

The UpdateDebugInfoFile function takes the information stored in NtHeaders and updates the corresponding fields in the .DBG file. Any time an image file is modified, this function should be called to keep the numbers in sync. Specifically, whenever an image checksum changes, the .DBG file should be updated to match.

Windows NT: This function is not available under Windows NT 3.51; it was introduced in Windows NT 4.0.