SymRegisterCallbackProc64 Callback Function
An application-defined callback function used with the SymRegisterCallback64 function. It is called by the symbol handler.
The PSYMBOL_REGISTERED_CALLBACK64 type defines a pointer to this callback function. SymRegisterCallbackProc64 is a placeholder for the application-defined function name.
BOOL CALLBACK SymRegisterCallbackProc64( [in] HANDLE hProcess, [in] ULONG ActionCode, [in] ULONG64 CallbackData, [in] ULONG64 UserContext );
Parameters
- hProcess
-
A handle to the process that was originally passed to the SymInitialize function.
- ActionCode
-
The callback code. This parameter can be one of the following values.
Value Meaning CBA_DEBUG_INFO
0x10000000Display verbose information.
The CallbackData parameter is a pointer to a string.
CBA_DEFERRED_SYMBOL_LOAD_CANCEL
0x00000007Deferred symbol loading has started. To cancel the symbol load, return TRUE.
The CallbackData parameter should be ignored.
CBA_DEFERRED_SYMBOL_LOAD_COMPLETE
0x00000002Deferred symbol load has completed.
The CallbackData parameter is a pointer to a IMAGEHLP_DEFERRED_SYMBOL_LOAD64 structure.
CBA_DEFERRED_SYMBOL_LOAD_FAILURE
0x00000003Deferred symbol load has failed.
The CallbackData parameter is a pointer to a IMAGEHLP_DEFERRED_SYMBOL_LOAD64 structure. The symbol handler will attempt to load the symbols again if the callback function sets the FileName member of this structure.
CBA_DEFERRED_SYMBOL_LOAD_PARTIAL
0x00000020Deferred symbol load has partially completed. The symbol loader is unable to read the image header from either the image file or the specified module.
The CallbackData parameter is a pointer to a IMAGEHLP_DEFERRED_SYMBOL_LOAD64 structure. The symbol handler will attempt to load the symbols again if the callback function sets the FileName member of this structure.
DbgHelp 5.1: This value is not supported.
CBA_DEFERRED_SYMBOL_LOAD_START
0x00000001Deferred symbol load has started.
The CallbackData parameter is a pointer to a IMAGEHLP_DEFERRED_SYMBOL_LOAD64 structure.
CBA_DUPLICATE_SYMBOL
0x00000005Duplicate symbols were found. This reason is used only in COFF or CodeView format.
The CallbackData parameter is a pointer to a IMAGEHLP_DUPLICATE_SYMBOL64 structure. To specify which symbol to use, set the SelectedSymbol member of this structure.
CBA_EVENT
0x00000010Display verbose information. If you do not handle this event, the information is resent through the CBA_DEBUG_INFO event.
The CallbackData parameter is a pointer to a IMAGEHLP_CBA_EVENT structure.
CBA_READ_MEMORY
0x00000006The loaded image has been read.
The CallbackData parameter is a pointer to a IMAGEHLP_CBA_READ_MEMORY structure. The callback function should read the number of bytes specified by the bytes member into the buffer specified by the buf member, and update the bytesread member accordingly.
CBA_SET_OPTIONS
0x00000008Symbol options have been updated. To retrieve the current options, call the SymGetOptions function.
The CallbackData parameter should be ignored.
CBA_SYMBOLS_UNLOADED
0x00000004Symbols have been unloaded.
The CallbackData parameter should be ignored.
- CallbackData
-
Data for the operation. The format of this data depends on the value of the ActionCode parameter.
If the callback function was registered with SymRegisterCallbackW64, the data is a Unicode string or data structure. Otherwise, the data uses ANSI format.
- UserContext
-
User-defined value specified in SymRegisterCallback64, or NULL. Typically, this parameter is used by an application to pass a pointer to a data structure that lets the callback function establish some context.
Return Value
To indicate success handling the code, return TRUE.
To indicate failure handling the code, return FALSE. If your code does not handle a particular code, you should also return FALSE. (Returning TRUE in this case may have unintended consequences.)
Remarks
The calling application gets called through the registered callback function as a result of another call to one of the symbol handler functions. The calling application must be prepared for the possible side effects that this can cause. If the application has only one callback function that is being used by multiple threads, then care may be necessary to synchronize some types of data access while in the context of the callback function.
Requirements
Redistributable |
Requires DbgHelp.dll 5.1 or later. |
---|---|
Header |
Declared in DbgHelp.h. |
See Also
DbgHelp Functions
IMAGEHLP_CBA_EVENT
IMAGEHLP_CBA_READ_MEMORY
IMAGEHLP_DEFERRED_SYMBOL_LOAD64
IMAGEHLP_DUPLICATE_SYMBOL64
SymRegisterCallback64
Send comments about this topic to Microsoft
Build date: 9/25/2007
© 2007 Microsoft Corporation. All rights reserved.