1
0
mirror of synced 2024-12-11 23:46:00 +01:00
ImHex/plugins/libimhex/include/hex/helpers/paths.hpp

22 lines
317 B
C++

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