gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit d84c01ae5c4120b938f3c527ab2c3108eaf3fa98
parent db605896d27460641b11013bc52d9f6778a81c35
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Thu, 27 Jun 2024 22:07:19 +0200

do not include file inside of a namespace

Diffstat:
Msource/synthLib/midiToSysex.cpp | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/source/synthLib/midiToSysex.cpp b/source/synthLib/midiToSysex.cpp @@ -7,10 +7,13 @@ #include "os.h" +#ifdef _MSC_VER +#include <Windows.h> +#endif + namespace synthLib { #ifdef _MSC_VER -#include <Windows.h> std::wstring ToUtf16(const std::string& str) { std::wstring ret;