Changeset 13813 in vbox for trunk/include
- Timestamp:
- Nov 4, 2008 9:55:34 PM (16 years ago)
- Location:
- trunk/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm.h
r13778 r13813 129 129 VMMR3DECL(void) VMMR3Relocate(PVM pVM, RTGCINTPTR offDelta); 130 130 VMMR3DECL(int) VMMR3UpdateLoggers(PVM pVM); 131 VMMR3DECL(const char *) VMMR3Get GCAssertMsg1(PVM pVM);132 VMMR3DECL(const char *) VMMR3Get GCAssertMsg2(PVM pVM);131 VMMR3DECL(const char *) VMMR3GetRZAssertMsg1(PVM pVM); 132 VMMR3DECL(const char *) VMMR3GetRZAssertMsg2(PVM pVM); 133 133 VMMR3DECL(int) VMMR3GetImportRC(PVM pVM, const char *pszSymbol, PRTRCPTR pRCPtrValue); 134 134 VMMR3DECL(int) VMMR3SelectSwitcher(PVM pVM, VMMSWITCHER enmSwitcher); … … 136 136 VMMR3DECL(int) VMMR3RawRunGC(PVM pVM); 137 137 VMMR3DECL(int) VMMR3HwAccRunGC(PVM pVM); 138 VMMR3DECL(int) VMMR3Call GC(PVM pVM, RTRCPTR GCPtrEntry, unsigned cArgs, ...);139 VMMR3DECL(int) VMMR3Call GCV(PVM pVM, RTRCPTR GCPtrEntry, unsigned cArgs, va_list args);138 VMMR3DECL(int) VMMR3CallRC(PVM pVM, RTRCPTR RCPtrEntry, unsigned cArgs, ...); 139 VMMR3DECL(int) VMMR3CallRCV(PVM pVM, RTRCPTR RCPtrEntry, unsigned cArgs, va_list args); 140 140 VMMR3DECL(int) VMMR3ResumeHyper(PVM pVM); 141 141 VMMR3DECL(void) VMMR3FatalDump(PVM pVM, int rcErr); -
trunk/include/iprt/initterm.h
r11841 r13813 82 82 RTR3DECL(int) RTR3InitAndSUPLibWithProgramPath(const char *pszProgramPath); 83 83 84 /** 84 /** 85 85 * Initializes the runtime library and possibly also SUPLib too. 86 * 86 * 87 87 * Avoid this interface, it's not considered stable. 88 * 88 * 89 89 * @returns IPRT status code. 90 90 * @param iVersion The interface version. Must be 0 atm. … … 119 119 #ifdef IN_GC 120 120 /** 121 * Init alizes the guestcontext runtime library.121 * Initializes the raw-mode context runtime library. 122 122 * 123 123 * @returns iprt status code. … … 125 125 * @param u64ProgramStartNanoTS The startup timestamp. 126 126 */ 127 RTGCDECL(int) RT GCInit(uint64_t u64ProgramStartNanoTS);127 RTGCDECL(int) RTRCInit(uint64_t u64ProgramStartNanoTS); 128 128 129 129 /** 130 * Terminates the guestcontext runtime library.130 * Terminates the raw-mode context runtime library. 131 131 */ 132 RTGCDECL(void) RT GCTerm(void);132 RTGCDECL(void) RTRCTerm(void); 133 133 #endif 134 134
Note:
See TracChangeset
for help on using the changeset viewer.