blob: c40854284116948ed541a2c888319bd9789a729e (
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
27
28
|
#ifndef SRC_CONFIG_H_S6A1C09K
#define SRC_CONFIG_H_S6A1C09K
/* package name */
#define PACKAGE "pianobar"
#define VERSION "2015.12.10"
#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
#endif /* SRC_CONFIG_H_S6A1C09K */
|