14 lines
197 B
C++
14 lines
197 B
C++
|
#ifndef PATHS_HPP
|
||
|
#define PATHS_HPP
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
extern std::string prefixCustom;
|
||
|
extern std::string prefixDefault;
|
||
|
|
||
|
void initPrefixes();
|
||
|
|
||
|
std::string resolvePath(const char* path);
|
||
|
|
||
|
#endif
|