Changeset 100931 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- Aug 21, 2023 11:11:01 PM (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/dbgmod.h
r98103 r100931 316 316 * initialize pDbgOps and pvDbgPriv. 317 317 * @param enmArch The desired architecture. 318 */ 319 DECLCALLBACKMEMBER(int, pfnTryOpen,(PRTDBGMODINT pMod, RTLDRARCH enmArch)); 318 * @param hDbgCfg Optional DBG configuration handle, for loading 319 * additional external files and later logging debug file 320 * errors during load. Specifically this is to try deal 321 * with stuff like the Windows 2000 DBG files which 322 * contains a link to the PDB file with the actual symbol 323 * information. 324 */ 325 DECLCALLBACKMEMBER(int, pfnTryOpen,(PRTDBGMODINT pMod, RTLDRARCH enmArch, RTDBGCFG hDbgCfg)); 320 326 321 327 /** … … 702 708 extern DECL_HIDDEN_DATA(RTSTRCACHE) g_hDbgModStrCache; 703 709 extern DECL_HIDDEN_DATA(RTDBGMODVTDBG const) g_rtDbgModVtDbgCodeView; 710 extern DECL_HIDDEN_DATA(RTDBGMODVTDBG const) g_rtDbgModVtDbgPdb; 704 711 extern DECL_HIDDEN_DATA(RTDBGMODVTDBG const) g_rtDbgModVtDbgDwarf; 705 712 extern DECL_HIDDEN_DATA(RTDBGMODVTDBG const) g_rtDbgModVtDbgNm;
Note:
See TracChangeset
for help on using the changeset viewer.