shithub: sf2mid

Download patch

ref: e1aa80797db4a593e0cc003c7e6b2a437dcb7b1a
parent: d4ffcdc8a34d3f61f22e4b283b4c100f5adf4b82
author: Bernhard Schelling <14200249+schellingb@users.noreply.github.com>
date: Sun Feb 2 19:37:32 EST 2020

Fix possible compilation error in tml.h if used without tsf.h

--- a/tml.h
+++ b/tml.h
@@ -15,7 +15,7 @@
 
    LICENSE (ZLIB)
 
-   Copyright (C) 2017, 2018 Bernhard Schelling
+   Copyright (C) 2017, 2018, 2020 Bernhard Schelling
 
    This software is provided 'as-is', without any express or implied
    warranty.  In no event will the authors be held liable for any damages
@@ -138,6 +138,9 @@
 
 // Generic Midi loading method using the stream structure above
 TMLDEF tml_message* tml_load(struct tml_stream* stream);
+
+// If this library is used together with TinySoundFont, tsf_stream (equivalent to tml_stream) can also be used
+struct tsf_stream;
 TMLDEF tml_message* tml_load_tsf_stream(struct tsf_stream* stream);
 
 #ifdef __cplusplus