mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
677 B
24 lines
677 B
#if 0 |
|
#include "i2pd_qt_gui.h" |
|
#include <QApplication> |
|
#include <QMessageBox> |
|
#include "mainwindow.h" |
|
#include "DaemonQT.h" |
|
|
|
int runGUI( int argc, char* argv[] ) { |
|
QApplication app(argc, argv); |
|
bool daemonInitSuccess = i2p::util::DaemonQTImpl::init(argc, argv); |
|
if(!daemonInitSuccess) { |
|
QMessageBox::critical(0, "Error", "Daemon init failed"); |
|
return 1; |
|
} |
|
MainWindow w; |
|
w.show (); |
|
i2p::util::DaemonQTImpl::start(); |
|
int result = app.exec(); |
|
//QMessageBox::information(&w, "Debug", "exec finished"); |
|
i2p::util::DaemonQTImpl::stop(); |
|
//QMessageBox::information(&w, "Debug", "demon stopped"); |
|
return result; |
|
} |
|
#endif
|
|
|