Changeset 20800 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- Jun 22, 2009 11:47:37 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/dbgmod.h
r20799 r20800 254 254 * 255 255 * @param pMod Pointer to the module structure. 256 * @param i SymbolThe symbol ordinal number.257 * @param pSym bolWhere to store the symbol information.258 */ 259 DECLCALLBACKMEMBER(int, pfnSymbolByOrdinal)(PRTDBGMODINT pMod, uint32_t i Symbol, PRTDBGSYMBOL pSymbol);256 * @param iOrdinal The symbol ordinal number. 257 * @param pSymInfo Where to store the symbol information. 258 */ 259 DECLCALLBACKMEMBER(int, pfnSymbolByOrdinal)(PRTDBGMODINT pMod, uint32_t iOrdinal, PRTDBGSYMBOL pSymInfo); 260 260 261 261 /** … … 269 269 * @param pMod Pointer to the module structure. 270 270 * @param pszSymbol The symbol name. 271 * @para pSymbol Where to store the symbol information. 272 */ 273 DECLCALLBACKMEMBER(int, pfnSymbolByName)(PRTDBGMODINT pMod, const char *pszSymbol, PRTDBGSYMBOL pSymbol); 271 * @param cchSymbol The length of the symbol name. 272 * @param pSymInfo Where to store the symbol information. 273 */ 274 DECLCALLBACKMEMBER(int, pfnSymbolByName)(PRTDBGMODINT pMod, const char *pszSymbol, size_t cchSymbol, PRTDBGSYMBOL pSymInfo); 274 275 275 276 /** … … 290 291 * @param poffDisp Where to store the distance between the specified address 291 292 * and the returned symbol. Optional. 292 * @param pSym bolWhere to store the symbol information.293 */ 294 DECLCALLBACKMEMBER(int, pfnSymbolByAddr)(PRTDBGMODINT pMod, uint32_t iSeg, RTUINTPTR off, PRTINTPTR poffDisp, PRTDBGSYMBOL pSym bol);293 * @param pSymInfo Where to store the symbol information. 294 */ 295 DECLCALLBACKMEMBER(int, pfnSymbolByAddr)(PRTDBGMODINT pMod, uint32_t iSeg, RTUINTPTR off, PRTINTPTR poffDisp, PRTDBGSYMBOL pSymInfo); 295 296 296 297
Note:
See TracChangeset
for help on using the changeset viewer.