Changeset 41 for trunk/include/k/kLdr.h
- Timestamp:
- Aug 24, 2011, 4:35:57 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/k/kLdr.h
r29 r41 337 337 /** Core or dump. */ 338 338 KLDRTYPE_CORE, 339 /** Debug module (debug info with empty code & data segments). */ 340 KLDRTYPE_DEBUG_INFO, 339 341 /** The end of the valid types values (exclusive). */ 340 342 KLDRTYPE_END, … … 523 525 * @param iMajorVer The major version number of the debug info format. -1 if unknow - implies invalid iMinorVer. 524 526 * @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. 525 528 * @param offFile The file offset *if* this type has one specific location in the executable image file. 526 529 * This is -1 if there isn't any specific file location. … … 532 535 */ 533 536 typedef 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); 535 539 /** Pointer to a debug info enumerator callback. */ 536 540 typedef FNKLDRENUMDBG *PFNKLDRENUMDBG;
Note:
See TracChangeset
for help on using the changeset viewer.