Changeset 41 for trunk/include/k/kLdr.h


Ignore:
Timestamp:
Aug 24, 2011, 4:35:57 PM (14 years ago)
Author:
bird
Message:

Debug info enumration adjustments. Working on MH_DSYM support.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/k/kLdr.h

    r29 r41  
    337337    /** Core or dump. */
    338338    KLDRTYPE_CORE,
     339    /** Debug module (debug info with empty code & data segments). */
     340    KLDRTYPE_DEBUG_INFO,
    339341    /** The end of the valid types values (exclusive). */
    340342    KLDRTYPE_END,
     
    523525 * @param   iMajorVer   The major version number of the debug info format. -1 if unknow - implies invalid iMinorVer.
    524526 * @param   iMinorVer   The minor version number of the debug info format. -1 when iMajorVer is -1.
     527 * @param   pszPartNm   The name of the debug info part, NULL if not applicable.
    525528 * @param   offFile     The file offset *if* this type has one specific location in the executable image file.
    526529 *                      This is -1 if there isn't any specific file location.
     
    532535 */
    533536typedef int FNKLDRENUMDBG(PKLDRMOD pMod, KU32 iDbgInfo, KLDRDBGINFOTYPE enmType, KI16 iMajorVer, KI16 iMinorVer,
    534                           KLDRFOFF offFile, KLDRADDR LinkAddress, KLDRSIZE cb, const char *pszExtFile, void *pvUser);
     537                          const char *pszPartNm, KLDRFOFF offFile, KLDRADDR LinkAddress, KLDRSIZE cb,
     538                          const char *pszExtFile, void *pvUser);
    535539/** Pointer to a debug info enumerator callback. */
    536540typedef FNKLDRENUMDBG *PFNKLDRENUMDBG;
Note: See TracChangeset for help on using the changeset viewer.