src/main_unix.cpp [62:73]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  try {
    initEventLoop();
    initRPIService();
  } catch (std::exception const &e) {
    std::cerr << "Error during RWrapper startup: " << e.what() << "\n";
    return 1;
  }
  {
    WithOutputHandler withOutputHandler(rpiService->replOutputHandler);
    setup_Rmainloop();
  }
  run_Rmainloop();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main_win.cpp [89:100]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  try {
    initEventLoop();
    initRPIService();
  } catch (std::exception const &e) {
    std::cerr << "Error during RWrapper startup: " << e.what() << "\n";
    return 1;
  }
  {
    WithOutputHandler withOutputHandler(rpiService->replOutputHandler);
    setup_Rmainloop();
  }
  run_Rmainloop();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



