1
0
mirror of synced 2024-12-02 19:27:21 +01:00
ImHex/lib/libimhex/include/hex/helpers/paths.hpp

27 lines
441 B
C++
Raw Normal View History

#pragma once
#include <string>
#include <vector>
2022-01-13 14:33:30 +01:00
#include <filesystem>
namespace hex {
2022-01-13 14:33:30 +01:00
namespace fs = std::filesystem;
enum class ImHexPath {
Patterns,
PatternsInclude,
Magic,
Python,
Plugins,
Yara,
Config,
Resources,
Constants
};
std::string getExecutablePath();
2022-01-13 14:33:30 +01:00
std::vector<fs::path> getPath(ImHexPath path, bool listNonExisting = false);
}