Skip to content

Latest commit

 

History

History
99 lines (73 loc) · 2.73 KB

nf-dbghelp-symdeletesymbol.md

File metadata and controls

99 lines (73 loc) · 2.73 KB
UID title description helpviewer_keywords old-location tech.root ms.assetid ms.date ms.keywords req.header req.include-header req.target-type req.target-min-winverclnt req.target-min-winversvr req.kmdf-ver req.umdf-ver req.ddi-compliance req.unicode-ansi req.idl req.max-support req.namespace req.assembly req.type-library req.lib req.dll req.irql targetos req.typenames req.redist ms.custom f1_keywords dev_langs topic_type api_type api_location api_name
NF:dbghelp.SymDeleteSymbol
SymDeleteSymbol function (dbghelp.h)
The SymDeleteSymbol function (dbghelp.h) deletes a virtual symbol from the specified module.
SymDeleteSymbol
SymDeleteSymbol function
SymDeleteSymbolW
_win32_symdeletesymbol
base.symdeletesymbol
dbghelp/SymDeleteSymbol
dbghelp/SymDeleteSymbolW
base\symdeletesymbol.htm
Debug
9fc5a19d-5984-4d0a-a3d6-3da474055f5e
08/04/2022
SymDeleteSymbol, SymDeleteSymbol function, SymDeleteSymbolW, _win32_symdeletesymbol, base.symdeletesymbol, dbghelp/SymDeleteSymbol, dbghelp/SymDeleteSymbolW
dbghelp.h
Windows
SymDeleteSymbolW (Unicode) and SymDeleteSymbol (ANSI)
Dbghelp.lib
Dbghelp.dll
Windows
DbgHelp.dll 6.0 or later
19H1
SymDeleteSymbol
dbghelp/SymDeleteSymbol
c++
APIRef
kbSyntax
DllExport
Dbghelp.dll
SymDeleteSymbol
SymDeleteSymbol
SymDeleteSymbolW

SymDeleteSymbol function

-description

Deletes a virtual symbol from the specified module.

-parameters

-param hProcess [in]

A handle to a process. This handle must have been previously passed to the SymInitialize function.

-param BaseOfDll [in]

The base address of the module.

-param Name [in, optional]

The name of the symbol.

-param Address [in]

The address of the symbol. This address must be within the address range of the specified module.

-param Flags [in]

This parameter is unused.

-returns

If the function succeeds, the return value is TRUE.

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

-remarks

All DbgHelp functions, such as this one, are single threaded. Therefore, calls from more than one thread to this function will likely result in unexpected behavior or memory corruption. To avoid this, you must synchronize all concurrent calls from more than one thread to this function.

To call the Unicode version of this function, define DBGHELP_TRANSLATE_TCHAR.

-see-also

DbgHelp Functions

SymAddSymbol