Path: blob/a-new-beginning/Cherry/Core/include/audio/blargg_config.h
2 views
// $package user configuration file. Don't replace when updating library.12#ifndef BLARGG_CONFIG_H3#define BLARGG_CONFIG_H45// Uncomment to enable platform-specific (and possibly non-portable) optimizations.6//#define BLARGG_NONPORTABLE 178// Uncomment if automatic byte-order determination doesn't work9//#define BLARGG_BIG_ENDIAN 11011// Uncomment to use zlib for transparent decompression of gzipped files12//#define HAVE_ZLIB_H1314// Uncomment if you get errors in the bool section of blargg_common.h15//#define BLARGG_COMPILER_HAS_BOOL 11617// Uncomment to disable out-of-memory exceptions18//#include <memory>19//#define BLARGG_NEW new (std::nothrow)2021// Use standard config.h if present22#ifdef HAVE_CONFIG_H23#include "config.h"24#endif2526#endif272829