Changeset 49044 in vbox for trunk/src/VBox/Runtime/common/dbg/dbgmodldr.cpp
- Timestamp:
- Oct 11, 2013 1:06:28 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dbg/dbgmodldr.cpp
r46266 r49044 5 5 6 6 /* 7 * Copyright (C) 2011 Oracle Corporation7 * Copyright (C) 2011-2013 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 59 59 typedef RTDBGMODLDR *PRTDBGMODLDR; 60 60 61 62 63 /** @interface_method_impl{RTDBGMODVTIMG,pfnQueryProp} */ 64 static DECLCALLBACK(int) rtDbgModLdr_QueryProp(PRTDBGMODINT pMod, RTLDRPROP enmProp, void *pvBuf, size_t cbBuf) 65 { 66 PRTDBGMODLDR pThis = (PRTDBGMODLDR)pMod->pvImgPriv; 67 return RTLdrQueryProp(pThis->hLdrMod, enmProp, pvBuf, cbBuf); 68 } 61 69 62 70 … … 216 224 /*.pfnGetFormat = */ rtDbgModLdr_GetFormat, 217 225 /*.pfnGetArch = */ rtDbgModLdr_GetArch, 226 /*.pfnQueryProp = */ rtDbgModLdr_QueryProp, 218 227 219 228 /*.u32EndMagic = */ RTDBGMODVTIMG_MAGIC
Note:
See TracChangeset
for help on using the changeset viewer.