Directories for the config file and custom data will be created when Facecam2D starts.
17 lines
249 B
C++
17 lines
249 B
C++
#ifndef PATHS_HPP
|
|
#define PATHS_HPP
|
|
|
|
#include <string>
|
|
|
|
extern std::string prefixConfig;
|
|
extern std::string prefixCustom;
|
|
extern std::string prefixDefault;
|
|
|
|
void initPrefixes();
|
|
|
|
void makePaths();
|
|
|
|
std::string resolvePath(const char* path);
|
|
|
|
#endif
|