X Tutup
#include #include #include #include #include "constants.hpp" #include "MainDialog.hpp" int main(int argc, char *argv[]) { char *passwd = getenv("GLACJAY_SSHPROXY_PASSWORD"); if (passwd && strlen(passwd)) { printf("%s\n", passwd); exit(0); } QApplication app(argc, argv); MainDialog dlg; dlg.show(); return app.exec(); }
X Tutup