-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfoo_midi.cpp
More file actions
49 lines (39 loc) · 1.39 KB
/
foo_midi.cpp
File metadata and controls
49 lines (39 loc) · 1.39 KB
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
/** $VER: foo_midi.cpp (2025.07.07) **/
#include "pch.h"
#include <sdk/foobar2000-lite.h>
#include <sdk/componentversion.h>
#include "History.h"
#include "Resource.h"
#include <bass/c/bass.h>
#include <clap/version.h>
#include <FluidSynth/include/fluidsynth.h>
#include <libadlmidi/repo/include/adlmidi.h>
#include <libopnmidi/repo/include/opnmidi.h>
#include <libmt32emu/config.h>
#pragma hdrstop
#define CLAP_SDK_VERSION TOSTRING(CLAP_VERSION_MAJOR) "." TOSTRING(CLAP_VERSION_MINOR) "." TOSTRING(CLAP_VERSION_REVISION)
namespace
{
#pragma warning(disable: 4265 4625 4626 5026 5027 26433 26436 26455)
DECLARE_COMPONENT_VERSION
(
STR_COMPONENT_NAME,
STR_COMPONENT_VERSION,
STR_COMPONENT_BASENAME " " STR_COMPONENT_VERSION "\n"
STR_COMPONENT_COPYRIGHT "\n"
STR_COMPONENT_COMMENTS "\n"
"\n"
STR_COMPONENT_DESCRIPTION "\n"
"\n"
"Built with foobar2000 SDK " TOSTRING(FOOBAR2000_SDK_VERSION) "\n"
"on " __DATE__ " " __TIME__ ".\n"
"\n"
"BASS SDK " BASSVERSIONTEXT "\n"
"FluidSynth SDK " FLUIDSYNTH_VERSION "\n"
"CLAP SDK " CLAP_SDK_VERSION "\n"
"LibADLMIDI " ADLMIDI_VERSION "\n"
"LibOPNMIDI " OPNMIDI_VERSION "\n"
"LibMT32Emu " MT32EMU_VERSION "\n"
);
VALIDATE_COMPONENT_FILENAME(STR_COMPONENT_FILENAME);
}