Changeset 46113 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- May 15, 2013 10:39:43 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 85801
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/dbgmod.h
r46101 r46113 115 115 */ 116 116 DECLCALLBACKMEMBER(int, pfnEnumSegments)(PRTDBGMODINT pMod, PFNRTLDRENUMSEGS pfnCallback, void *pvUser); 117 118 /** 119 * Enumerates the symbols exported by the module. 120 * 121 * @returns iprt status code, which might have been returned by pfnCallback. 122 * @param pMod Pointer to the module structure. 123 * @param fFlags Flags indicating what to return and such. 124 * @param BaseAddress The image base addressto use when calculating the 125 * symbol values. 126 * @param pfnCallback The callback function which each symbol is to be fed 127 * to. 128 * @param pvUser User argument to pass to the enumerator. 129 */ 130 DECLCALLBACKMEMBER(int, pfnEnumSymbols)(PRTDBGMODINT pMod, uint32_t fFlags, RTLDRADDR BaseAddress, 131 PFNRTLDRENUMSYMS pfnCallback, void *pvUser); 117 132 118 133 /**
Note:
See TracChangeset
for help on using the changeset viewer.