SymSrvDeltaName Function
Generates the name for a file that describes the relationship between two different versions of the same symbol or image file. Using this feature prevents applications from having to regenerate such information every time they analyze two files.
PCTSTR WINAPI SymSrvDeltaName( __in HANDLE hProcess, __in PCTSTR SymPath, __in PCTSTR Type, __in PCTSTR File1, __in PCTSTR File2 );
Parameters
- hProcess
-
A handle to a process. This handle must have been previously passed to the SymInitialize function.
- SymPath
-
The symbol path. The function uses only the symbol stores described in standard syntax for symbol stores. All other paths are ignored. If this parameter is NULL, the function uses the symbol path set using the SymInitialize or SymSetSearchPath function.
- Type
-
The extension for the generated file name.
- File1
-
The path of the first version of the symbol or image file.
- File2
-
The path of the second version of the symbol or image file.
Return Value
If the function succeeds, the return value is the resulting file name.
If the function fails, the return value is NULL. To retrieve extended error information, call GetLastError.
Remarks
This function opens the two specified files, reads the indexing information from the header, and passes this information to the symbol server so it can create the file name. If you specify the Type parameter as "xml", the name is the index of File1, followed by a dash, followed by the index of File2, followed by an .xml extension. For example:
3F3D5C755000-3F3D647621000.xml
This function returns a pointer to a buffer that may be reused by another function. Therefore, be sure to copy the data returned to another buffer immediately.
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.
Requirements
Redistributable |
Requires DbgHelp.dll 6.3 or later. |
---|---|
Header |
Declared in DbgHelp.h. |
Library |
Use Dbghelp.lib. |
DLL |
Requires Dbghelp.dll. |
Unicode |
Implemented as SymSrvDeltaNameW (Unicode) and SymSrvDeltaName (ANSI). |
See Also
Send comments about this topic to Microsoft
Build date: 9/25/2007
© 2007 Microsoft Corporation. All rights reserved.