SymSetExtendedOption function dbghelp

bool SymSetExtendedOption(
  1. IMAGEHLP_EXTENDED_OPTIONS option,
  2. bool value
)

Turns the specified extended symbol option on or off.

To learn more, see learn.microsoft.com/windows/win32/api/dbghelp/nf-dbghelp-symsetextendedoption.

Implementation

@pragma('vm:prefer-inline')
bool SymSetExtendedOption(IMAGEHLP_EXTENDED_OPTIONS option, bool value) =>
    _SymSetExtendedOption(option, value ? TRUE : FALSE) != FALSE;