Platform SDK: Debugging and Error Handling

SymTypeNameCallback

The SymTypeNameCallback function is an application-defined callback function used with the SymGetModuleInfoEx function.

The PSYMBOL_TYPE_NAME_CALLBACK type defines a pointer to this callback function. SymTypeNameCallback is a placeholder for the application-defined function name.

BOOL SymTypeNameCallback(
  PSTR MatchedName,
  ULONG typeIndex,
  PVOID CallerData
);

Parameters

MatchedName
[in] The symbol name that was matched to the partial symbol name.
typeIndex
[in] The type index.
CallerData
[in] User-defined data.

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.

Requirements

  Windows NT/2000: Requires Windows 2000. Available as a redistributable for Windows NT 4.0.
  Windows 95/98: Requires Available as a redistributable for Windows 98.
  Header: Declared in Dbghelp.h.

See Also

Debug Help Library Overview, DbgHelp Functions, SymGetModuleInfoEx