1
0
mirror of synced 2024-12-12 16:01:06 +01:00
ImHex/plugins/libimhex/include/hex/helpers/paths.hpp
2021-10-31 16:28:10 +01:00

24 lines
355 B
C++

#pragma once
#include <string>
#include <vector>
namespace hex {
enum class ImHexPath {
Patterns,
PatternsInclude,
Magic,
Python,
Plugins,
Yara,
Config,
Resources,
Constants
};
std::string getExecutablePath();
std::vector<std::string> getPath(ImHexPath path);
}