summaryrefslogtreecommitdiff
path: root/src/config.h
blob: 42a0b112538639fa690c028af1f92cc74eea944a (plain)
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
# pragma once

/* package name */
#define PACKAGE "pianobar"

#define VERSION "2017.05.18"

#define TITLE   "Pianobar"

/* Visual C++ name restrict differently */
#ifdef _WIN32
#define restrict __restrict
#endif

/* Visual C++ does not have inline keyword in C */
#ifdef _WIN32
#define inline __inline
#endif

/* Visual C++ does not have strcasecmp */
#ifdef _WIN32
#define strcasecmp _stricmp
#endif

#define CURL_STATICLIB