comparison config.h @ 875:54ffba3768d6

Make menu stuff work on Android (theoretically)
author Michael Pavone <pavone@retrodev.com>
date Sun, 08 Nov 2015 22:03:34 -0800
parents 46bb673eed4e
children 369da70ee2c2
comparison
equal deleted inserted replaced
874:b6842dfb8edf 875:54ffba3768d6
5 */ 5 */
6 #ifndef CONFIG_H_ 6 #ifndef CONFIG_H_
7 #define CONFIG_H_ 7 #define CONFIG_H_
8 #include "tern.h" 8 #include "tern.h"
9 9
10 tern_node * parse_config_file(char * config_path); 10 tern_node *parse_config_file(char *config_path);
11 tern_node * load_config(); 11 tern_node *parse_bundled_config(char *config_name);
12 #ifdef __ANDROID__ 12 tern_node *load_config();
13 tern_node * parse_config_file_assets(char *config_path);
14 #endif
15 13
16 #endif //CONFIG_H_ 14 #endif //CONFIG_H_
17 15