deskflow/src/lib/common/ExitCodes.h
sithlord48 d3c0ce8895 refactor: move all exit codes to new ExitCodes
add new exitcode s_exitDuplicate for when exiting because of already running instance
2025-08-21 12:34:50 +01:00

17 lines
827 B
C

/*
* Deskflow -- mouse and keyboard sharing utility
* SPDX-FileCopyrightText: (C) 2025 Deskflow Developers
* SPDX-FileCopyrightText: (C) 2010 - 2018, 2024 - 2025 Symless Ltd.
* SPDX-FileCopyrightText: (C) 2002 - 2007 Chris Schoeneman
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
*/
#pragma once
static const int s_exitSuccess = 0; //!< App successfully completed
static const int s_exitFailed = 1; //!< App had a general failure
static const int s_exitTerminated = 2; //!< App was kill by a signal
static const int s_exitArgs = 3; //!< App was unable to run due to bad arguments being passed
static const int s_exitConfig = 4; //!< App was unable to read the configuration
static const int s_exitDuplicate = 5; //!< An instance of the app (or core app) is already running