SymbolServerSetOptions Callback Function
An entry point to the symbol server DLL. It is used to set the symbol server options.
The PSYMBOLSERVERSETOPTIONSPROC type defines a pointer to this callback function. SymbolServerSetOptions is a placeholder for the library-defined function name.
BOOL CALLBACK SymbolServerSetOptions( UINT_PTR options, ULONG64 data );
Parameters
- options
-
The option to be set (see Remarks).
- data
-
The server-specific option data. The format of this data depends on the value of options (see Remarks).
Return Value
The server can return TRUE to indicate success, or return FALSE and call the SetLastError function to indicate an error condition.
Remarks
To call this function, you must use LoadLibrary function to load the DLL and the GetProcAddress function to get the address of the function. The default implementation is in Symsrv.dll.
If you are using Symsrv.dll as your symbol server, the options parameter should be one of the following values.
id | Meaning |
---|---|
SSRVOPT_CALLBACK | Callback function. The data parameter contains a pointer to the callback function. If data is NULL, any previously-set callback function is ignored. |
SSRVOPT_DOWNSTREAM_STORE | The data parameter contains a string that specifies the downstream store path. For more information, see Using SymSrv.DbgHelp 6.0 and earlier: This value is not supported. |
SSRVOPT_FLAT_DEFAULT_STORE | If data is TRUE, SymSrv uses the default downstream store as a flat directory.DbgHelp 6.1 and earlier: This value is not supported. |
SSRVOPT_FAVOR_COMPRESSED | If data is TRUE, SymSrv uses symbols that do not have an address. By default, SymSrv filters out symbols that do not have an address. |
SSRVOPT_NOCOPY | If data is TRUE, SymSrv will not verify that the path parameter passed by the SymbolServer function actually exists. In this case, SymbolServer will always return TRUE. |
SSRVOPT_OVERWRITE | If data is TRUE, SymSrv will overwrite the downlevel store from the symbol store.DbgHelp 6.1 and earlier: This value is not supported. |
SSRVOPT_PARAMTYPE | Data type of the id parameter passed to the
SymbolServer function.
The data parameter is of type UINT_PTR and can be one of the following values:
|
SSRVOPT_PARENTWIN | The data parameter is an HWND value that specifies the handle to the parent window that should be used for all dialog boxes and pop-ups. If data is NULL, SymSrv will use the desktop window as the parent (this is the default). |
SSRVOPT_PROXY | If data is NULL, the default proxy server is used. Otherwise, data is a null-terminated string that specifies the name and port number of the proxy server. The name and port number are separated by a colon (:). For more information, see Symbol Servers and Internet Firewalls.DbgHelp 6.0 and earlier: This value is not supported. |
SSRVOPT_RESET | Resets default options. |
SSRVOPT_SECURE | If data is TRUE, SymSrv will not use the downstream store specified in _NT_SYMBOL_PATH.DbgHelp 6.0 and earlier: This value is not supported. |
SSRVOPT_SETCONTEXT | The data parameter specifies the value passed to the SymbolServerCallback function in the context parameter.DbgHelp 6.0 and earlier: This value is not supported. |
SSRVOPT_TRACE | SymSrv will provide debug trace information.DbgHelp 5.1: This value is not supported. |
SSRVOPT_UNATTENDED | If data is TRUE, SymSrv will not display dialog boxes or pop-ups. If data is FALSE, SymSrv will display these graphical features when making connections. |
Requirements
Redistributable |
Requires DbgHelp.dll 5.1 or later. |
---|---|
Header |
Declared in DbgHelp.h. |
See Also
DbgHelp FunctionsSymbolServerGetOptions
Send comments about this topic to Microsoft
Build date: 9/25/2007
© 2007 Microsoft Corporation. All rights reserved.