/** * Main entry point. */ int main(int argc, char **argv, char **envp) { int rc = RTR3InitExe(argc, &argv, RTR3INIT_FLAGS_SUPLIB); if (RT_FAILURE(rc)) return RTMsgInitFailure(rc); return TrustedMain(argc, argv, envp); }
/** * Main entry point. */ int main(int argc, char **argv) { /* * Before we do *anything*, we initialize the runtime. */ #if defined (RT_OS_WINDOWS) if (IsWow64()) { RTPrintf("Your are runing 32bit VirtualMonitor on 64bit windows\n"); RTPrintf("Please Download 64bit version of VirtualMonitor\n"); return -1; } #endif int rc = RTR3InitExe(argc, &argv, 0); if (RT_FAILURE(rc)) return FatalError("RTR3InitExe failed rc=%Rrc\n", rc); return TrustedMain(argc, argv, NULL); }
int main(int argc, char **argv, char **envp) { /* Initialize VBox Runtime. * Initialize the SUPLib as well only if we are really about to start a VM. * Don't do this if we are only starting the selector window. */ bool fInitSUPLib = false; #ifdef Q_WS_X11 if (!VBoxXInitThreads()) return 1; #endif for (int i = 1; i < argc; ++i) { /* NOTE: the check here must match the corresponding check for the * options to start a VM in hardenedmain.cpp and VBoxGlobal.cpp exactly, * otherwise there will be weird error messages. */ if ( !::strcmp(argv[i], "--startvm") || !::strcmp(argv[i], "-startvm")) { fInitSUPLib = true; break; } } int rc = RTR3InitExe(argc, &argv, fInitSUPLib ? RTR3INIT_FLAGS_SUPLIB : 0); /* Initialization failed: */ if (RT_FAILURE(rc)) { /* We have to create QApplication anyway * just to show the only one error-message: */ QApplication a(argc, &argv[0]); #ifdef Q_OS_SOLARIS /* Use plastique look&feel for Solaris instead of the default motif (Qt 4.7.x): */ QApplication::setStyle(new QPlastiqueStyle); #endif /* Q_OS_SOLARIS */ /* Prepare the error-message: */ QString strTitle = QApplication::tr("VirtualBox - Runtime Error"); QString strText = "<html>"; switch (rc) { case VERR_VM_DRIVER_NOT_INSTALLED: case VERR_VM_DRIVER_LOAD_ERROR: strText += QApplication::tr("<b>Cannot access the kernel driver!</b><br/><br/>"); # ifdef RT_OS_LINUX strText += g_QStrHintLinuxNoDriver; # else /* RT_OS_LINUX */ strText += g_QStrHintOtherNoDriver; # endif /* !RT_OS_LINUX */ break; # ifdef RT_OS_LINUX case VERR_NO_MEMORY: strText += g_QStrHintLinuxNoMemory; break; # endif /* RT_OS_LINUX */ case VERR_VM_DRIVER_NOT_ACCESSIBLE: strText += QApplication::tr("Kernel driver not accessible"); break; case VERR_VM_DRIVER_VERSION_MISMATCH: # ifdef RT_OS_LINUX strText += g_QStrHintLinuxWrongDriverVersion; # else /* RT_OS_LINUX */ strText += g_QStrHintOtherWrongDriverVersion; # endif /* !RT_OS_LINUX */ break; default: strText += QApplication::tr("Unknown error %2 during initialization of the Runtime").arg(rc); break; } strText += "</html>"; /* Show the error-message: */ QMessageBox::critical(0 /* parent */, strTitle, strText, QMessageBox::Abort /* 1st button */, 0 /* 2nd button */); /* Default error-result: */ return 1; } /* Actual main function: */ return TrustedMain(argc, argv, envp); }
/** * Main entry point. */ int main(int argc, char **argv, char **envp) { return TrustedMain(argc, argv, envp); }
int main (int argc, char **argv, char **envp) { /* Initialize VBox Runtime. Initialize the SUPLib as well only if we * are really about to start a VM. Don't do this if we are only starting * the selector window. */ bool fInitSUPLib = false; for (int i = 1; i < argc; i++) { /* NOTE: the check here must match the corresponding check for the * options to start a VM in hardenedmain.cpp and VBoxGlobal.cpp exactly, * otherwise there will be weird error messages. */ if ( !::strcmp(argv[i], "--startvm") || !::strcmp(argv[i], "-startvm")) { fInitSUPLib = true; break; } } int rc = RTR3InitExe(argc, &argv, fInitSUPLib ? RTR3INIT_FLAGS_SUPLIB : 0); if (RT_FAILURE(rc)) { QApplication a (argc, &argv[0]); #ifdef Q_OS_SOLARIS /* Use plastique look 'n feel for Solaris instead of the default motif (Qt 4.7.x) */ QApplication::setStyle (new QPlastiqueStyle); #endif QString msgTitle = QApplication::tr ("VirtualBox - Runtime Error"); QString msgText = "<html>"; switch (rc) { case VERR_VM_DRIVER_NOT_INSTALLED: case VERR_VM_DRIVER_LOAD_ERROR: msgText += QApplication::tr ( "<b>Cannot access the kernel driver!</b><br/><br/>"); # ifdef RT_OS_LINUX msgText += g_QStrHintLinuxNoDriver; # else msgText += g_QStrHintOtherNoDriver; # endif break; # ifdef RT_OS_LINUX case VERR_NO_MEMORY: msgText += g_QStrHintLinuxNoMemory; break; # endif case VERR_VM_DRIVER_NOT_ACCESSIBLE: msgText += QApplication::tr ("Kernel driver not accessible"); break; case VERR_VM_DRIVER_VERSION_MISMATCH: # ifdef RT_OS_LINUX msgText += g_QStrHintLinuxWrongDriverVersion; # else msgText += g_QStrHintOtherWrongDriverVersion; # endif break; default: msgText += QApplication::tr ( "Unknown error %2 during initialization of the Runtime" ).arg (rc); break; } msgText += "</html>"; QMessageBox::critical ( 0, /* parent */ msgTitle, msgText, QMessageBox::Abort, /* button0 */ 0); /* button1 */ return 1; } return TrustedMain (argc, argv, envp); }