Changeset 50914 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Mar 27, 2014 7:07:53 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 93042
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r50874 r50914 618 618 /* Let the extension packs have a go at things (hold no locks). */ 619 619 if (SUCCEEDED(rc)) 620 mptrExtPackManager-> callAllConsoleReadyHooks(this);620 mptrExtPackManager->i_callAllConsoleReadyHooks(this); 621 621 #endif 622 622 … … 5820 5820 { 5821 5821 #ifdef VBOX_WITH_EXTPACK 5822 vrc = mptrExtPackManager-> callAllVmPowerOnHooks(this, VMR3GetVM(ptrVM.rawUVM()));5822 vrc = mptrExtPackManager->i_callAllVmPowerOnHooks(this, VMR3GetVM(ptrVM.rawUVM())); 5823 5823 #else 5824 5824 vrc = VINF_SUCCESS; … … 6693 6693 6694 6694 #ifdef VBOX_WITH_EXTPACK 6695 mptrExtPackManager-> dumpAllToReleaseLog();6695 mptrExtPackManager->i_dumpAllToReleaseLog(); 6696 6696 #endif 6697 6697 … … 7092 7092 vrc = VMR3PowerOff(pUVM); 7093 7093 #ifdef VBOX_WITH_EXTPACK 7094 mptrExtPackManager-> callAllVmPowerOffHooks(this, VMR3GetVM(pUVM));7094 mptrExtPackManager->i_callAllVmPowerOffHooks(this, VMR3GetVM(pUVM)); 7095 7095 #endif 7096 7096 alock.acquire(); … … 9126 9126 /* Start/Resume the VM execution */ 9127 9127 #ifdef VBOX_WITH_EXTPACK 9128 vrc = pConsole->mptrExtPackManager-> callAllVmPowerOnHooks(pConsole, pVM);9128 vrc = pConsole->mptrExtPackManager->i_callAllVmPowerOnHooks(pConsole, pVM); 9129 9129 #endif 9130 9130 if (RT_SUCCESS(vrc)) … … 9139 9139 int vrc2 = VMR3PowerOff(pConsole->mpUVM); AssertLogRelRC(vrc2); 9140 9140 #ifdef VBOX_WITH_EXTPACK 9141 pConsole->mptrExtPackManager-> callAllVmPowerOffHooks(pConsole, pVM);9141 pConsole->mptrExtPackManager->i_callAllVmPowerOffHooks(pConsole, pVM); 9142 9142 #endif 9143 9143 } … … 9154 9154 int vrc2 = VMR3PowerOff(pConsole->mpUVM); AssertLogRelRC(vrc2); 9155 9155 #ifdef VBOX_WITH_EXTPACK 9156 pConsole->mptrExtPackManager-> callAllVmPowerOffHooks(pConsole, pVM);9156 pConsole->mptrExtPackManager->i_callAllVmPowerOffHooks(pConsole, pVM); 9157 9157 #endif 9158 9158 } … … 9187 9187 /* Power on the FT enabled VM. */ 9188 9188 #ifdef VBOX_WITH_EXTPACK 9189 vrc = pConsole->mptrExtPackManager-> callAllVmPowerOnHooks(pConsole, pVM);9189 vrc = pConsole->mptrExtPackManager->i_callAllVmPowerOnHooks(pConsole, pVM); 9190 9190 #endif 9191 9191 if (RT_SUCCESS(vrc)) … … 9210 9210 /* Power on the VM (i.e. start executing) */ 9211 9211 #ifdef VBOX_WITH_EXTPACK 9212 vrc = pConsole->mptrExtPackManager-> callAllVmPowerOnHooks(pConsole, pVM);9212 vrc = pConsole->mptrExtPackManager->i_callAllVmPowerOnHooks(pConsole, pVM); 9213 9213 #endif 9214 9214 if (RT_SUCCESS(vrc)) -
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r50723 r50914 628 628 # ifdef VBOX_WITH_EXTPACK 629 629 static const char *s_pszPCIRawExtPackName = "Oracle VM VirtualBox Extension Pack"; 630 if (!mptrExtPackManager->i sExtPackUsable(s_pszPCIRawExtPackName))630 if (!mptrExtPackManager->i_isExtPackUsable(s_pszPCIRawExtPackName)) 631 631 /* Always fatal! */ 632 632 return VMR3SetError(pUVM, VERR_NOT_FOUND, RT_SRC_POS, … … 1752 1752 static const char *s_pszUsbExtPackName = "Oracle VM VirtualBox Extension Pack"; 1753 1753 # ifdef VBOX_WITH_EXTPACK 1754 if (mptrExtPackManager->i sExtPackUsable(s_pszUsbExtPackName))1754 if (mptrExtPackManager->i_isExtPackUsable(s_pszUsbExtPackName)) 1755 1755 # endif 1756 1756 { … … 1798 1798 static const char *s_pszUsbExtPackName = "Oracle VM VirtualBox Extension Pack"; 1799 1799 # ifdef VBOX_WITH_EXTPACK 1800 if (mptrExtPackManager->i sExtPackUsable(s_pszUsbExtPackName))1800 if (mptrExtPackManager->i_isExtPackUsable(s_pszUsbExtPackName)) 1801 1801 # endif 1802 1802 { … … 3037 3037 { 3038 3038 pAlock->release(); 3039 rc = mptrExtPackManager-> callAllVmConfigureVmmHooks(this, pVM);3039 rc = mptrExtPackManager->i_callAllVmConfigureVmmHooks(this, pVM); 3040 3040 pAlock->acquire(); 3041 3041 } -
trunk/src/VBox/Main/src-client/ConsoleVRDPServer.cpp
r50848 r50914 1516 1516 #ifdef VBOX_WITH_EXTPACK 1517 1517 ExtPackManager *pExtPackMgr = mConsole->getExtPackManager(); 1518 vrc = pExtPackMgr-> getVrdeLibraryPathForExtPack(&strExtPack, &strVrdeLibrary);1518 vrc = pExtPackMgr->i_getVrdeLibraryPathForExtPack(&strExtPack, &strVrdeLibrary); 1519 1519 #else 1520 1520 vrc = VERR_FILE_NOT_FOUND; -
trunk/src/VBox/Main/src-client/xpcom/module.cpp
r50874 r50914 84 84 // NS_DECL_CLASSINFO(ExtPackFile) 85 85 // NS_IMPL_THREADSAFE_ISUPPORTS2_CI(ExtPackFile, IExtPackFile, IExtPackBase) 86 NS_DECL_CLASSINFO(ExtPack)87 NS_IMPL_THREADSAFE_ISUPPORTS2_CI(ExtPack, IExtPack, IExtPackBase)88 NS_DECL_CLASSINFO(ExtPackManager)89 NS_IMPL_THREADSAFE_ISUPPORTS1_CI(ExtPackManager, IExtPackManager)90 86 #endif 91 87
Note:
See TracChangeset
for help on using the changeset viewer.