2002-08-02 19:57:46 +00:00
|
|
|
/*
|
|
|
|
* synergy -- mouse and keyboard sharing utility
|
|
|
|
* Copyright (C) 2002 Chris Schoeneman
|
|
|
|
*
|
|
|
|
* This package is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* found in the file COPYING that should have accompanied this file.
|
|
|
|
*
|
|
|
|
* This package is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2002-06-04 11:06:26 +00:00
|
|
|
#ifndef VERSION_H
|
|
|
|
#define VERSION_H
|
|
|
|
|
2002-07-31 16:57:26 +00:00
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
// set version macro if not set yet
|
|
|
|
#if !defined(VERSION)
|
2004-07-25 14:18:50 +00:00
|
|
|
# define VERSION "1.1.8"
|
2002-07-31 16:57:26 +00:00
|
|
|
#endif
|
2002-06-04 11:06:26 +00:00
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
// important strings
|
2004-02-28 12:19:49 +00:00
|
|
|
extern const char* kApplication;
|
|
|
|
extern const char* kCopyright;
|
|
|
|
extern const char* kContact;
|
|
|
|
extern const char* kWebsite;
|
2002-06-04 11:06:26 +00:00
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
// build version. follows linux kernel style: an even minor number implies
|
2002-07-24 13:01:18 +00:00
|
|
|
// a release version, odd implies development version.
|
2004-02-28 12:19:49 +00:00
|
|
|
extern const char* kVersion;
|
2002-07-24 13:01:18 +00:00
|
|
|
|
2003-01-04 22:01:32 +00:00
|
|
|
// application version
|
2004-02-28 12:19:49 +00:00
|
|
|
extern const char* kAppVersion;
|
2003-01-04 22:01:32 +00:00
|
|
|
|
2002-07-24 13:01:18 +00:00
|
|
|
// exit codes
|
|
|
|
static const int kExitSuccess = 0; // successful completion
|
|
|
|
static const int kExitFailed = 1; // general failure
|
|
|
|
static const int kExitTerminated = 2; // killed by signal
|
|
|
|
static const int kExitArgs = 3; // bad arguments
|
|
|
|
static const int kExitConfig = 4; // cannot read configuration
|
2002-06-04 11:06:26 +00:00
|
|
|
|
|
|
|
#endif
|