VirtualBox

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


Ignore:
Timestamp:
May 15, 2013 10:39:43 PM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
85801
Message:

Implemented debug module that uses the exported symbols. This will work on all hosts. :-)

File:
1 edited

Legend:

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

    r46101 r46113  
    115115     */
    116116    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);
    117132
    118133    /**
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