blob: 2aef85b469ebce4db2e034eab07669801166ac36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef PARSERSETTINGS_H_
#define PARSERSETTINGS_H_
#include <string>
#include "boosty.h"
extern int parser_error_pos;
void parser_init(const std::string &applicationpath, bool isgui);
void add_librarydir(const std::string &libdir);
fs::path search_libs(const fs::path &localpath);
fs::path find_valid_path(const fs::path &sourcepath,
const fs::path &localpath,
const std::vector<std::string> *openfilenames = NULL);
#endif
|