blob: 3b82302dba4c18c379df40a066cf4847dbd8db3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef INFO_H__
#define INFO_H__
#define APP_NAME "VK Player Controller"
#define APP_ABOUT "Use media buttons to switch between tracks."
#define APP_VERSION "0.2"
#define APP_AUTHOR "Eugene Z <me@ch1p.com>"
#define APP_URL "https://ch1p.com/vkpc/?linux"
#define SERVER_PORT 52178
#define SERVER_HOST "localhost"
// #define DEBUG 1
#endif
|