#ifdef _WIN32 #define LIBXML_DLL_IMPORT __declspec(dllimport) #else extern "C" int xmlLoadExtDtdDefaultValue; #endif #include "kio_help.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include // Pseudo plugin class to embed meta data class KIOPluginForMetaData : public QObject { Q_OBJECT Q_PLUGIN_METADATA(IID "org.kde.kio.worker.help" FILE "help.json") }; extern "C" { Q_DECL_EXPORT int kdemain(int argc, char **argv) { QCoreApplication app(argc, argv); // needed for KCrash app.setApplicationName(QStringLiteral("kio_help")); KDocTools::setupStandardDirs(); // qDebug() << "Starting " << getpid(); if (argc != 4) { fprintf(stderr, "Usage: kio_help protocol domain-socket1 domain-socket2\n"); exit(-1); } LIBXML_TEST_VERSION xmlSubstituteEntitiesDefault(1); xmlLoadExtDtdDefaultValue = 1; exsltRegisterAll(); HelpProtocol worker(false, argv[2], argv[3]); worker.dispatchLoop(); // qDebug() << "Done"; return 0; } } // needed for JSON file embedding #include "main.moc"