Skip to content

Latest commit

 

History

History
96 lines (72 loc) · 2.88 KB

nf-dbghelp-symenumtypes.md

File metadata and controls

96 lines (72 loc) · 2.88 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.SymEnumTypes
SymEnumTypes function (dbghelp.h)
The SymEnumTypes function (dbghelp.h) enumerates all user-defined types.
SymEnumTypes
SymEnumTypes function
SymEnumTypesW
_win32_symenumtypes
base.symenumtypes
dbghelp/SymEnumTypes
dbghelp/SymEnumTypesW
base\symenumtypes.htm
Debug
06f964bc-107a-468d-a35d-141b5da1780e
08/04/2022
SymEnumTypes, SymEnumTypes function, SymEnumTypesW, _win32_symenumtypes, base.symenumtypes, dbghelp/SymEnumTypes, dbghelp/SymEnumTypesW
dbghelp.h
Windows
SymEnumTypesW (Unicode) and SymEnumTypes (ANSI)
Dbghelp.lib
Dbghelp.dll
Windows
DbgHelp.dll 5.1 or later
19H1
SymEnumTypes
dbghelp/SymEnumTypes
c++
APIRef
kbSyntax
DllExport
Dbghelp.dll
SymEnumTypes
SymEnumTypes
SymEnumTypesW

SymEnumTypes function

-description

Enumerates all user-defined types.

-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 EnumSymbolsCallback [in]

A pointer to an SymEnumSymbolsProc callback function that receives the symbol information.

-param UserContext [in, optional]

A user-defined value to be passed to the callback function, or NULL. This parameter is typically used by an application to pass a pointer to a data structure that provides context information for the callback function.

-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

SymEnumSymbolsProc