-
Notifications
You must be signed in to change notification settings - Fork 25
/
app.h
35 lines (28 loc) · 1.5 KB
/
app.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* vim:set ts=4 sw=4 tw=80 et cindent ai si cino=(0,ml,\:0:
* ( settings from: http://datapax.com.au/code_conventions/ )
*/
/**********************************************************************
RatSlap
Copyright (C) 2016-2020 Todd Harbour
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
version 2 ONLY, as published by the Free Software Foundation.
This program 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.
You should have received a copy of the GNU General Public License
along with this program, in the file COPYING or COPYING.txt; if
not, see http://www.gnu.org/licenses/ , or write to:
The Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**********************************************************************/
#ifndef APP_H
#define APP_H
#define APP_NAME "RatSlap"
#define APP_SUMMARY "Linux configuration tool for Logitech mice (currently only G300/G300S)"
#define BIN_NAME "ratslap"
#define APP_AUTHOR "Todd Harbour"
#define APP_COPYRIGHT "Copyright (C) 2016-2020 "APP_AUTHOR
#define APP_URL "https://gitlab.com/krayon/ratslap/"
#endif /* APP_H */