Changeset 46266 in vbox for trunk/src/VBox/Runtime/common/dbg/dbgmodldr.cpp
- Timestamp:
- May 25, 2013 7:51:19 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dbg/dbgmodldr.cpp
r46164 r46266 74 74 PRTDBGMODLDR pThis = (PRTDBGMODLDR)pMod->pvImgPriv; 75 75 return RTLdrGetFormat(pThis->hLdrMod); 76 } 77 78 79 /** @interface_method_impl{RTDBGMODVTIMG,pfnReadAt} */ 80 static DECLCALLBACK(int) rtDbgModLdr_ReadAt(PRTDBGMODINT pMod, uint32_t iDbgInfoHint, RTFOFF off, void *pvBuf, size_t cb) 81 { 82 PRTDBGMODLDR pThis = (PRTDBGMODLDR)pMod->pvImgPriv; 83 return rtLdrReadAt(pThis->hLdrMod, pvBuf, UINT32_MAX /** @todo iDbgInfo*/, off, cb); 76 84 } 77 85 … … 205 213 /*.pfnMapPart = */ rtDbgModLdr_MapPart, 206 214 /*.pfnUnmapPart = */ rtDbgModLdr_UnmapPart, 215 /*.pfnReadAt = */ rtDbgModLdr_ReadAt, 207 216 /*.pfnGetFormat = */ rtDbgModLdr_GetFormat, 208 217 /*.pfnGetArch = */ rtDbgModLdr_GetArch,
Note:
See TracChangeset
for help on using the changeset viewer.