/* * Deskflow -- mouse and keyboard sharing utility * SPDX-FileCopyrightText: (C) 2025 Chris Rizzitello * SPDX-FileCopyrightText: (C) 2012-2016 Symless Ltd. * SPDX-FileCopyrightText: (C) 2002 Chris Schoeneman * SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception */ #include "arch/Arch.h" #include "base/EventQueue.h" #include "base/Log.h" #include "deskflow/ServerApp.h" #if SYSAPI_WIN32 #include "arch/win32/ArchMiscWindows.h" #include #endif int main(int argc, char **argv) { #if SYSAPI_WIN32 // HACK to make sure settings gets the correct qApp path QCoreApplication m(argc, argv); m.deleteLater(); ArchMiscWindows::guardRuntimeVersion(); // record window instance for tray icon, etc ArchMiscWindows::setInstanceWin32(GetModuleHandle(nullptr)); #endif Arch arch; arch.init(); Log log; EventQueue events; ServerApp app(&events); return app.run(argc, argv); }