// Library configuration. Modify this file as necessary.12// File_Extractor 1.0.03#ifndef BLARGG_CONFIG_H4#define BLARGG_CONFIG_H56// Uncomment a #define line below to have effect described.7// #define HAVE_ZLIB_H89// Enable RAR archive support. Doing so adds extra licensing restrictions10// to this library (see unrar/readme.txt for more information).11#define FEX_ENABLE_RAR 11213// Accept file paths encoded as UTF-8. Currently only affects Windows,14// as Unix/Linux/Mac OS X already use UTF-8 paths.15#define BLARGG_UTF8_PATHS 11617// Enable support for as building DLL on Windows.18//#define BLARGG_BUILD_DLL 11920// Support only the listed archive types. Remove any you don't need.21/*22#define FEX_TYPE_LIST \23fex_7z_type,\24fex_gz_type,\25fex_rar_type,\26fex_zip_type,27*/2829#define HAVE_STDINT_H3031// Use standard config.h if present32#ifdef HAVE_CONFIG_H33#include "config.h"34#endif3536#endif373839