VirtualBox

Changeset 20800 in vbox for trunk/src/VBox/Runtime/include


Ignore:
Timestamp:
Jun 22, 2009 11:47:37 PM (15 years ago)
Author:
vboxsync
Message:

IPRT: More RTDbgMod code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/include/internal/dbgmod.h

    r20799 r20800  
    254254     *
    255255     * @param   pMod        Pointer to the module structure.
    256      * @param   iSymbol     The symbol ordinal number.
    257      * @param   pSymbol     Where to store the symbol information.
    258      */
    259     DECLCALLBACKMEMBER(int, pfnSymbolByOrdinal)(PRTDBGMODINT pMod, uint32_t iSymbol, 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);
    260260
    261261    /**
     
    269269     * @param   pMod        Pointer to the module structure.
    270270     * @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);
    274275
    275276    /**
     
    290291     * @param   poffDisp    Where to store the distance between the specified address
    291292     *                      and the returned symbol. Optional.
    292      * @param   pSymbol     Where to store the symbol information.
    293      */
    294     DECLCALLBACKMEMBER(int, pfnSymbolByAddr)(PRTDBGMODINT pMod, uint32_t iSeg, RTUINTPTR off, PRTINTPTR poffDisp, PRTDBGSYMBOL pSymbol);
     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);
    295296
    296297
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette