Changeset 881 in vbox
- Timestamp:
- Feb 13, 2007 5:26:07 PM (18 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/csam.h
r1 r881 210 210 211 211 /** 212 * Scan and analy ze code starting at specified EIP213 * 214 * @returns VBox status code. 215 * @param pVM The VM to operate on. 216 * @param p Eip Instruction pointer217 * @param fCode32 16 of 32 bits code218 */ 219 CSAMR3DECL(int) CSAMR3Check EIP(PVM pVM, RTGCPTR pEip, bool fCode32);212 * Scan and analyse code 213 * 214 * @returns VBox status code. 215 * @param pVM The VM to operate on. 216 * @param pCtx CPU context 217 * @param pInstrGC Instruction pointer 218 */ 219 CSAMR3DECL(int) CSAMR3CheckCode(PVM pVM, PCPUMCTX pCtx, RTGCPTR pInstrGC); 220 220 221 221 /** -
trunk/include/VBox/patm.h
r740 r881 496 496 * @returns VBox status code. 497 497 * @param pVM The VM to operate on. 498 * @param pInstr Guest context point erto privileged instruction498 * @param pInstr Guest context point to privileged instruction 499 499 * @param flags Patch flags 500 500 * 501 501 * @note returns failure if patching is not allowed or possible 502 *503 502 */ 504 503 PATMR3DECL(int) PATMR3InstallPatch(PVM pVM, RTGCPTR pInstrGC, uint64_t flags);
Note:
See TracChangeset
for help on using the changeset viewer.