Changeset 46161 in vbox for trunk/src/VBox/Runtime/include/internal
- Timestamp:
- May 19, 2013 1:31:13 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 85861
- Location:
- trunk/src/VBox/Runtime/include/internal
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/dbgmod.h
r46149 r46161 75 75 * Upon successful return the method is expected to 76 76 * initialize pImgOps and pvImgPriv. 77 */ 78 DECLCALLBACKMEMBER(int, pfnTryOpen)(PRTDBGMODINT pMod); 77 * @param enmArch The desired architecture. 78 */ 79 DECLCALLBACKMEMBER(int, pfnTryOpen)(PRTDBGMODINT pMod, RTLDRARCH enmArch); 79 80 80 81 /** … … 196 197 DECLCALLBACKMEMBER(int, pfnUnmapPart)(PRTDBGMODINT pMod, size_t cb, void const **ppvMap); 197 198 199 /** 200 * Gets the loader format. 201 * 202 * @returns Valid loader format on success, RTLDRFMT_INVALID if not supported. 203 * @param pMod Pointer to the module structure. 204 */ 205 DECLCALLBACKMEMBER(RTLDRFMT, pfnGetFormat)(PRTDBGMODINT pMod); 198 206 199 207 /** For catching initialization errors (RTDBGMODVTIMG_MAGIC). */ -
trunk/src/VBox/Runtime/include/internal/ldr.h
r46149 r46161 423 423 /** Pointer to the reader instance. This is NULL for native image. */ 424 424 PRTLDRREADER pReader; 425 /** Image format. */ 426 RTLDRFMT enmFormat; 427 /** Image type. */ 428 RTLDRTYPE enmType; 429 /** Image endianness. */ 430 RTLDRENDIAN enmEndian; 425 431 } RTLDRMODINTERNAL; 426 432
Note:
See TracChangeset
for help on using the changeset viewer.