Debugging Tools for Windows

AddDumpInformationFile

The AddDumpInformationFile method registers additional files containing supporting information that will be used when opening a dump file. The Unicode version of this method is AddDumpInformationFileWide.

HRESULT
  IDebugClient2::AddDumpInformationFile(
    IN PCSTR  InfoFile,
    IN ULONG  Type
    );

Parameters

InfoFile
Specifies the name of the file containing the supporting information.
Type
Specifies the type of the file InfoFile. Currently, only files containing paging file information are supported, and Type must be set to DEBUG_DUMP_FILE_PAGE_FILE_DUMP.

Return Value

S_OK
The method was successful.

This method may also return error values. See Return Values for more details.

Interface Version

AddDumpInformationFile is available in IDebugClient2 and later versions.

Comments

If supporting information is to be used when opening a dump file, this method or AddDumpInformationFileWide must be called before OpenDumpFile is called. If a session has already started, this method cannot be used.

For more information about crash dump files, see Dump File Targets.

Requirements

Headers: Defined in dbgeng.h. Include dbgeng.h.

See Also

AddDumpInformationFileWide, GetNumberDumpFiles, GetDumpFile, OpenDumpFile, OpenDumpFileWide

Build machine: CAPEBUILD