IDiaSessionEx::isFastLinkPDB

Retrieves a Boolean indicating that the source debug information was produced with /DEBUG:fastlink.

Syntax

HRESULT isFastLinkPDB(
    BOOL* pfFastLinkPDB
);

Parameters

pfFastLinkPDB

[out] Returns a Boolean indcating if the debug information was build with /DEBUG:fastlink or not.

Return Value

If successful, returns S_OK; otherwise, returns an error code.

Remarks

If debug information was compiled with /DEBUG:fastlink then not all of the inforation is contained within the .PDB and in order fo the debugger to fully work, it must access the debug inforation contained within oms of the intermediate build files (like .OBJ, .LIB, and .PCH files). Fastlink PDBs are no longer recommended.

See also