The SymSetOptions function sets the options mask.
DWORD SymSetOptions(
IN DWORD SymOptions
);
Value | Meaning |
---|---|
SYMOPT_CASE_INSENSITIVE | All symbol searches are insensitive to case. |
SYMOPT_UNDNAME | All symbols are presented in undecorated form. |
SYMOPT_DEFERRED_LOADS | Symbols are not loaded until a reference is made requiring the symbols be loaded. This is the fastest, most efficient way to use the symbol handler. |
SYMOPT_NO_CPP | All C++ decorated symbols containing the symbol separator "::" are replaced by "__". This option exists for debuggers that cannot handle parsing real C++ symbol names. |
The function returns the current options mask.
The options value can be changed any number of times while ImageHlp is in use by an application. The option change affects all future calls to the symbol handler.
To get the current options mask, call the SymGetOptions function.
Windows NT: Requires version 4.0 or later.
Windows: Requires Windows 95 or later. Available as a redistributable for Windows 95.
Windows CE: Unsupported.
Header: Declared in imagehlp.h.
Import Library: Use imagehlp.lib.
PE Image Helper (ImageHlp) Overview, Symbol Handler, SymGetOptions