Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/quicknes/fex/blargg_config.h
2 views
1
// Library configuration. Modify this file as necessary.
2
3
// File_Extractor 1.0.0
4
#ifndef BLARGG_CONFIG_H
5
#define BLARGG_CONFIG_H
6
7
// Uncomment a #define line below to have effect described.
8
// #define HAVE_ZLIB_H
9
10
// Enable RAR archive support. Doing so adds extra licensing restrictions
11
// to this library (see unrar/readme.txt for more information).
12
#define FEX_ENABLE_RAR 1
13
14
// Accept file paths encoded as UTF-8. Currently only affects Windows,
15
// as Unix/Linux/Mac OS X already use UTF-8 paths.
16
#define BLARGG_UTF8_PATHS 1
17
18
// Enable support for as building DLL on Windows.
19
//#define BLARGG_BUILD_DLL 1
20
21
// Support only the listed archive types. Remove any you don't need.
22
/*
23
#define FEX_TYPE_LIST \
24
fex_7z_type,\
25
fex_gz_type,\
26
fex_rar_type,\
27
fex_zip_type,
28
*/
29
30
#define HAVE_STDINT_H
31
32
// Use standard config.h if present
33
#ifdef HAVE_CONFIG_H
34
#include "config.h"
35
#endif
36
37
#endif
38
39