Deskflow 1.24.0.365
Keyboard and mouse sharing utility
Loading...
Searching...
No Matches
ExitCodes.h
Go to the documentation of this file.
1/*
2 * Deskflow -- mouse and keyboard sharing utility
3 * SPDX-FileCopyrightText: (C) 2025 Deskflow Developers
4 * SPDX-FileCopyrightText: (C) 2010 - 2018, 2024 - 2025 Symless Ltd.
5 * SPDX-FileCopyrightText: (C) 2002 - 2007 Chris Schoeneman
6 * SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
7 */
8
9#pragma once
10
11static const int s_exitSuccess = 0;
12static const int s_exitFailed = 1;
13static const int s_exitTerminated = 2;
14static const int s_exitArgs = 3;
15static const int s_exitConfig = 4;
16static const int s_exitDuplicate = 5;
static const int s_exitDuplicate
An instance of the app (or core app) is already running.
Definition ExitCodes.h:16
static const int s_exitConfig
App was unable to read the configuration.
Definition ExitCodes.h:15
static const int s_exitSuccess
App successfully completed.
Definition ExitCodes.h:11
static const int s_exitTerminated
App was kill by a signal.
Definition ExitCodes.h:13
static const int s_exitFailed
App had a general failure.
Definition ExitCodes.h:12
static const int s_exitArgs
App was unable to run due to bad arguments being passed.
Definition ExitCodes.h:14