blob: 8679001a94531233765c72f1a9d086524b374328 (
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 "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
|