SDL_mixer: forgot updating FLAC headers in MSVC and Xcode projects in prev. commit

From ef0952a7dd9ff1b3dbc9dcbd6675044ca81d785f Mon Sep 17 00:00:00 2001
From: Ozkan Sezer <[EMAIL REDACTED]>
Date: Mon, 28 Mar 2022 00:15:00 +0300
Subject: [PATCH] forgot updating FLAC headers in MSVC and Xcode projects in
 prev. commit

---
 VisualC/external/include/FLAC/all.h                    |  6 +++---
 VisualC/external/include/FLAC/export.h                 |  6 +++---
 VisualC/external/include/FLAC/stream_decoder.h         | 10 ----------
 .../FLAC.framework/Versions/A/Headers/FLAC/all.h       |  6 +++---
 .../FLAC.framework/Versions/A/Headers/FLAC/export.h    |  6 +++---
 .../Versions/A/Headers/FLAC/stream_decoder.h           | 10 ----------
 6 files changed, 12 insertions(+), 32 deletions(-)

diff --git a/VisualC/external/include/FLAC/all.h b/VisualC/external/include/FLAC/all.h
index b37a68fc..6ba03c19 100644
--- a/VisualC/external/include/FLAC/all.h
+++ b/VisualC/external/include/FLAC/all.h
@@ -147,7 +147,7 @@
  * library.
  *
  * Also, there are several places in the libFLAC code with comments marked
- * with "OPT:" where a #define can be changed to enable code that might be
+ * with "OPT:" where a \#define can be changed to enable code that might be
  * faster on a specific platform.  Experimenting with these can yield faster
  * binaries.
  */
@@ -159,9 +159,9 @@
  * the libraries to newer versions of FLAC.
  *
  * One simple facility for making porting easier that has been added
- * in FLAC 1.1.3 is a set of \c #defines in \c export.h of each
+ * in FLAC 1.1.3 is a set of \#defines in \c export.h of each
  * library's includes (e.g. \c include/FLAC/export.h).  The
- * \c #defines mirror the libraries'
+ * \#defines mirror the libraries'
  * <A HREF="http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning">libtool version numbers</A>,
  * e.g. in libFLAC there are \c FLAC_API_VERSION_CURRENT,
  * \c FLAC_API_VERSION_REVISION, and \c FLAC_API_VERSION_AGE.
diff --git a/VisualC/external/include/FLAC/export.h b/VisualC/external/include/FLAC/export.h
index 628fe5fc..3e3e7648 100644
--- a/VisualC/external/include/FLAC/export.h
+++ b/VisualC/external/include/FLAC/export.h
@@ -36,7 +36,7 @@
 /** \file include/FLAC/export.h
  *
  *  \brief
- *  This module contains #defines and symbols for exporting function
+ *  This module contains \#defines and symbols for exporting function
  *  calls, and providing version information and compiled-in features.
  *
  *  See the \link flac_export export \endlink module.
@@ -46,7 +46,7 @@
  *  \ingroup flac
  *
  *  \brief
- *  This module contains #defines and symbols for exporting function
+ *  This module contains \#defines and symbols for exporting function
  *  calls, and providing version information and compiled-in features.
  *
  *  If you are compiling with MSVC and will link to the static library
@@ -74,7 +74,7 @@
 
 #endif
 
-/** These #defines will mirror the libtool-based library version number, see
+/** These \#defines will mirror the libtool-based library version number, see
  * http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning
  */
 #define FLAC_API_VERSION_CURRENT 11
diff --git a/VisualC/external/include/FLAC/stream_decoder.h b/VisualC/external/include/FLAC/stream_decoder.h
index 50ebfa80..57215c5e 100644
--- a/VisualC/external/include/FLAC/stream_decoder.h
+++ b/VisualC/external/include/FLAC/stream_decoder.h
@@ -1550,16 +1550,6 @@ FLAC_API FLAC__bool FLAC__stream_decoder_skip_single_frame(FLAC__StreamDecoder *
  */
 FLAC_API FLAC__bool FLAC__stream_decoder_seek_absolute(FLAC__StreamDecoder *decoder, FLAC__uint64 sample);
 
-/** Return client_data from decoder.
- *  The data pointed to by the pointer should not be modified.
- *
- * \param  decoder  A decoder instance.
- * \retval const void *
- *    The callee's client data set through FLAC__stream_decoder_init_*().
- *    Do not modify the contents.
- */
-FLAC_API const void *FLAC__get_decoder_client_data(FLAC__StreamDecoder *decoder);
-
 /* \} */
 
 #ifdef __cplusplus
diff --git a/Xcode/Frameworks/FLAC.framework/Versions/A/Headers/FLAC/all.h b/Xcode/Frameworks/FLAC.framework/Versions/A/Headers/FLAC/all.h
index b37a68fc..6ba03c19 100644
--- a/Xcode/Frameworks/FLAC.framework/Versions/A/Headers/FLAC/all.h
+++ b/Xcode/Frameworks/FLAC.framework/Versions/A/Headers/FLAC/all.h
@@ -147,7 +147,7 @@
  * library.
  *
  * Also, there are several places in the libFLAC code with comments marked
- * with "OPT:" where a #define can be changed to enable code that might be
+ * with "OPT:" where a \#define can be changed to enable code that might be
  * faster on a specific platform.  Experimenting with these can yield faster
  * binaries.
  */
@@ -159,9 +159,9 @@
  * the libraries to newer versions of FLAC.
  *
  * One simple facility for making porting easier that has been added
- * in FLAC 1.1.3 is a set of \c #defines in \c export.h of each
+ * in FLAC 1.1.3 is a set of \#defines in \c export.h of each
  * library's includes (e.g. \c include/FLAC/export.h).  The
- * \c #defines mirror the libraries'
+ * \#defines mirror the libraries'
  * <A HREF="http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning">libtool version numbers</A>,
  * e.g. in libFLAC there are \c FLAC_API_VERSION_CURRENT,
  * \c FLAC_API_VERSION_REVISION, and \c FLAC_API_VERSION_AGE.
diff --git a/Xcode/Frameworks/FLAC.framework/Versions/A/Headers/FLAC/export.h b/Xcode/Frameworks/FLAC.framework/Versions/A/Headers/FLAC/export.h
index 628fe5fc..3e3e7648 100644
--- a/Xcode/Frameworks/FLAC.framework/Versions/A/Headers/FLAC/export.h
+++ b/Xcode/Frameworks/FLAC.framework/Versions/A/Headers/FLAC/export.h
@@ -36,7 +36,7 @@
 /** \file include/FLAC/export.h
  *
  *  \brief
- *  This module contains #defines and symbols for exporting function
+ *  This module contains \#defines and symbols for exporting function
  *  calls, and providing version information and compiled-in features.
  *
  *  See the \link flac_export export \endlink module.
@@ -46,7 +46,7 @@
  *  \ingroup flac
  *
  *  \brief
- *  This module contains #defines and symbols for exporting function
+ *  This module contains \#defines and symbols for exporting function
  *  calls, and providing version information and compiled-in features.
  *
  *  If you are compiling with MSVC and will link to the static library
@@ -74,7 +74,7 @@
 
 #endif
 
-/** These #defines will mirror the libtool-based library version number, see
+/** These \#defines will mirror the libtool-based library version number, see
  * http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning
  */
 #define FLAC_API_VERSION_CURRENT 11
diff --git a/Xcode/Frameworks/FLAC.framework/Versions/A/Headers/FLAC/stream_decoder.h b/Xcode/Frameworks/FLAC.framework/Versions/A/Headers/FLAC/stream_decoder.h
index 50ebfa80..57215c5e 100644
--- a/Xcode/Frameworks/FLAC.framework/Versions/A/Headers/FLAC/stream_decoder.h
+++ b/Xcode/Frameworks/FLAC.framework/Versions/A/Headers/FLAC/stream_decoder.h
@@ -1550,16 +1550,6 @@ FLAC_API FLAC__bool FLAC__stream_decoder_skip_single_frame(FLAC__StreamDecoder *
  */
 FLAC_API FLAC__bool FLAC__stream_decoder_seek_absolute(FLAC__StreamDecoder *decoder, FLAC__uint64 sample);
 
-/** Return client_data from decoder.
- *  The data pointed to by the pointer should not be modified.
- *
- * \param  decoder  A decoder instance.
- * \retval const void *
- *    The callee's client data set through FLAC__stream_decoder_init_*().
- *    Do not modify the contents.
- */
-FLAC_API const void *FLAC__get_decoder_client_data(FLAC__StreamDecoder *decoder);
-
 /* \} */
 
 #ifdef __cplusplus