SymEnumerateSymbols

The SymEnumerateSymbols function enumerates all the symbols for a specified module.

BOOL SymEnumerateSymbols(
  IN HANDLE hProcess,                                
  IN DWORD BaseOfDll,                                
  IN PSYM_ENUMSYMBOLS_CALLBACK EnumSymbolsCallback,  
  IN PVOID UserContext                               
);
 

Parameters

hProcess
Handle to the process that was originally passed to the SymInitialize function.
BaseOfDll
Specifies the base address of the module for which symbol enumeration is to take place.
EnumSymbolsCallback
Pointer to the callback function that receives the symbol information. For more information, see SymEnumSymbolsCallback.
UserContext
A user-defined value or NULL. This value is simply passed to the callback function. Normally, this parameter is used by an application to pass a pointer to a data structure that lets the callback function establish some type of context.

Return Values

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

The SymEnumerateSymbols function enumerates all the symbols for a desired module. The module information is located by the BaseOfDll parameter. The EnumSymbolsCallback function is called once per symbol and is passed the information for each symbol.

QuickInfo

  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.

See Also

PE Image Helper (ImageHlp) Overview, Symbol Handler, SymEnumSymbolsCallback, SymInitialize