Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
folium-app
GitHub Repository: folium-app/Folium
Path: blob/a-new-beginning/Cherry/Core/include/audio/blargg_config.h
2 views
1
// $package user configuration file. Don't replace when updating library.
2
3
#ifndef BLARGG_CONFIG_H
4
#define BLARGG_CONFIG_H
5
6
// Uncomment to enable platform-specific (and possibly non-portable) optimizations.
7
//#define BLARGG_NONPORTABLE 1
8
9
// Uncomment if automatic byte-order determination doesn't work
10
//#define BLARGG_BIG_ENDIAN 1
11
12
// Uncomment to use zlib for transparent decompression of gzipped files
13
//#define HAVE_ZLIB_H
14
15
// Uncomment if you get errors in the bool section of blargg_common.h
16
//#define BLARGG_COMPILER_HAS_BOOL 1
17
18
// Uncomment to disable out-of-memory exceptions
19
//#include <memory>
20
//#define BLARGG_NEW new (std::nothrow)
21
22
// Use standard config.h if present
23
#ifdef HAVE_CONFIG_H
24
#include "config.h"
25
#endif
26
27
#endif
28
29