Changeset 46164 in vbox for trunk/src/VBox/Runtime/include/internal
- Timestamp:
- May 19, 2013 4:58:01 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 85864
- Location:
- trunk/src/VBox/Runtime/include/internal
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/dbgmod.h
r46161 r46164 198 198 199 199 /** 200 * Gets the loaderformat.201 * 202 * @returns Valid loaderformat on success, RTLDRFMT_INVALID if not supported.200 * Gets the image format. 201 * 202 * @returns Valid image format on success, RTLDRFMT_INVALID if not supported. 203 203 * @param pMod Pointer to the module structure. 204 204 */ 205 205 DECLCALLBACKMEMBER(RTLDRFMT, pfnGetFormat)(PRTDBGMODINT pMod); 206 207 /** 208 * Gets the image architecture. 209 * 210 * @returns Valid image architecutre on success, RTLDRARCH_WHATEVER if not 211 * supported. 212 * @param pMod Pointer to the module structure. 213 */ 214 DECLCALLBACKMEMBER(RTLDRARCH, pfnGetArch)(PRTDBGMODINT pMod); 206 215 207 216 /** For catching initialization errors (RTDBGMODVTIMG_MAGIC). */ … … 244 253 * Upon successful return the method is expected to 245 254 * initialize pDbgOps and pvDbgPriv. 246 */ 247 DECLCALLBACKMEMBER(int, pfnTryOpen)(PRTDBGMODINT pMod); 255 * @param enmArch The desired architecture. 256 */ 257 DECLCALLBACKMEMBER(int, pfnTryOpen)(PRTDBGMODINT pMod, RTLDRARCH enmArch); 248 258 249 259 /** -
trunk/src/VBox/Runtime/include/internal/ldr.h
r46161 r46164 429 429 /** Image endianness. */ 430 430 RTLDRENDIAN enmEndian; 431 /** Image target architecture. */ 432 RTLDRARCH enmArch; 431 433 } RTLDRMODINTERNAL; 432 434
Note:
See TracChangeset
for help on using the changeset viewer.