Changeset 13778 in vbox for trunk/include/VBox
- Timestamp:
- Nov 4, 2008 9:45:27 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38762
- Location:
- trunk/include/VBox
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/cpum.h
r13532 r13778 961 961 962 962 VMMR3DECL(int) CPUMR3Init(PVM pVM); 963 VMMR3DECL(int) CPUMR3InitCPU(PVM pVM); 963 964 VMMR3DECL(void) CPUMR3Relocate(PVM pVM); 964 965 VMMR3DECL(int) CPUMR3Term(PVM pVM); 966 VMMR3DECL(int) CPUMR3TermCPU(PVM pVM); 965 967 VMMR3DECL(void) CPUMR3Reset(PVM pVM); 966 968 VMMR3DECL(int) CPUMR3QueryGuestCtxGCPtr(PVM pVM, RCPTRTYPE(PCPUMCTX) *ppCtx); -
trunk/include/VBox/em.h
r13565 r13778 166 166 */ 167 167 VMMR3DECL(int) EMR3Init(PVM pVM); 168 VMMR3DECL(int) EMR3InitCPU(PVM pVM); 168 169 VMMR3DECL(void) EMR3Relocate(PVM pVM); 169 170 VMMR3DECL(void) EMR3Reset(PVM pVM); 170 171 VMMR3DECL(int) EMR3Term(PVM pVM); 172 VMMR3DECL(int) EMR3TermCPU(PVM pVM); 171 173 VMMR3DECL(DECLNORETURN(void)) EMR3FatalError(PVM pVM, int rc); 172 174 VMMR3DECL(int) EMR3ExecuteVM(PVM pVM); -
trunk/include/VBox/hwaccm.h
r13517 r13778 101 101 VMMR3DECL(bool) HWACCMR3IsEventPending(PVM pVM); 102 102 VMMR3DECL(int) HWACCMR3Init(PVM pVM); 103 VMMR3DECL(int) HWACCMR3InitCPU(PVM pVM); 103 104 VMMR3DECL(int) HWACCMR3InitFinalizeR0(PVM pVM); 104 105 VMMR3DECL(void) HWACCMR3Relocate(PVM pVM); 105 106 VMMR3DECL(int) HWACCMR3Term(PVM pVM); 107 VMMR3DECL(int) HWACCMR3TermCPU(PVM pVM); 106 108 VMMR3DECL(void) HWACCMR3Reset(PVM pVM); 107 109 VMMR3DECL(void) HWACCMR3CheckError(PVM pVM, int iStatusCode); -
trunk/include/VBox/pgm.h
r13387 r13778 477 477 */ 478 478 VMMR3DECL(int) PGMR3Init(PVM pVM); 479 VMMR3DECL(int) PGMR3InitCPU(PVM pVM); 479 480 VMMR3DECL(int) PGMR3InitDynMap(PVM pVM); 480 481 VMMR3DECL(int) PGMR3InitFinalize(PVM pVM); … … 482 483 VMMR3DECL(void) PGMR3Reset(PVM pVM); 483 484 VMMR3DECL(int) PGMR3Term(PVM pVM); 485 VMMR3DECL(int) PGMR3TermCPU(PVM pVM); 484 486 VMMR3DECL(int) PGMR3LockCall(PVM pVM); 485 487 VMMR3DECL(int) PGMR3ChangeShwPDMappings(PVM pVM, bool fEnable); -
trunk/include/VBox/tm.h
r13633 r13778 209 209 */ 210 210 VMMR3DECL(int) TMR3Init(PVM pVM); 211 VMMR3DECL(int) TMR3InitCPU(PVM pVM); 211 212 VMMR3DECL(int) TMR3InitFinalize(PVM pVM); 212 213 VMMR3DECL(void) TMR3Relocate(PVM pVM, RTGCINTPTR offDelta); 213 214 VMMR3DECL(int) TMR3Term(PVM pVM); 215 VMMR3DECL(int) TMR3TermCPU(PVM pVM); 214 216 VMMR3DECL(void) TMR3Reset(PVM pVM); 215 217 VMMR3DECL(int) TMR3GetImportRC(PVM pVM, const char *pszSymbol, PRTRCPTR pRCPtrValue); -
trunk/include/VBox/vmm.h
r13714 r13778 121 121 */ 122 122 VMMR3DECL(int) VMMR3Init(PVM pVM); 123 VMMR3DECL(int) VMMR3InitCPU(PVM pVM); 123 124 VMMR3DECL(int) VMMR3InitFinalize(PVM pVM); 124 125 VMMR3DECL(int) VMMR3InitR0(PVM pVM); 125 126 VMMR3DECL(int) VMMR3InitRC(PVM pVM); 126 127 VMMR3DECL(int) VMMR3Term(PVM pVM); 128 VMMR3DECL(int) VMMR3TermCPU(PVM pVM); 127 129 VMMR3DECL(void) VMMR3Relocate(PVM pVM, RTGCINTPTR offDelta); 128 130 VMMR3DECL(int) VMMR3UpdateLoggers(PVM pVM);
Note:
See TracChangeset
for help on using the changeset viewer.