blob: fd242f1d3fca5b59d3d99302d97f9e90bcb9c88b (
plain) (
blame)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
/*
* openmpt123_config.hpp
* ---------------------
* Purpose: libopenmpt command line player
* Notes : (currently none)
* Authors: OpenMPT Devs
* The OpenMPT source code is released under the BSD license. Read LICENSE for more details.
*/
#ifndef OPENMPT123_CONFIG_HPP
#define OPENMPT123_CONFIG_HPP
#define MPT_INLINE_NS mpt_openmpt123
#if defined(_WIN32)
#ifndef WIN32
#define WIN32
#endif
#endif // _WIN32
#if defined(WIN32)
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#ifndef NOMINMAX
#define NOMINMAX
#endif
#ifdef _UNICODE
#ifndef UNICODE
#define UNICODE
#endif
#endif
#ifdef UNICODE
#ifndef _UNICODE
#if defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wreserved-id-macro"
#endif
#define _UNICODE
#if defined(__clang__)
#pragma clang diagnostic pop
#endif
#endif
#endif
#endif // WIN32
#if defined(WIN32)
#define MPT_WITH_MMIO
#endif // WIN32
#if defined(MPT_BUILD_MSVC)
#define MPT_WITH_FLAC
#define MPT_WITH_PORTAUDIO
#if defined(MPT_BUILD_MSVC_STATIC)
#define FLAC__NO_DLL
#endif
#endif // MPT_BUILD_MSVC
#define OPENMPT123_VERSION_STRING OPENMPT_API_VERSION_STRING
#endif // OPENMPT123_CONFIG_HPP
|