mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-02 05:27:41 -05:00
Refactored libimhex to and includes to better represent it as library
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
#include "views/view_bookmarks.hpp"
|
||||
|
||||
#include "providers/provider.hpp"
|
||||
#include <hex/providers/provider.hpp>
|
||||
#include "helpers/project_file_handler.hpp"
|
||||
|
||||
#include <cstring>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#include "views/view_data_inspector.hpp"
|
||||
|
||||
#include "providers/provider.hpp"
|
||||
#include "helpers/utils.hpp"
|
||||
#include <hex/providers/provider.hpp>
|
||||
#include <hex/helpers/utils.hpp>
|
||||
|
||||
#include <cstring>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#include "views/view_disassembler.hpp"
|
||||
|
||||
#include "providers/provider.hpp"
|
||||
#include "helpers/utils.hpp"
|
||||
#include <hex/providers/provider.hpp>
|
||||
#include <hex/helpers/utils.hpp>
|
||||
|
||||
#include <cstring>
|
||||
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
#include "views/view_hashes.hpp"
|
||||
|
||||
#include "providers/provider.hpp"
|
||||
#include <hex/providers/provider.hpp>
|
||||
#include <hex/helpers/utils.hpp>
|
||||
|
||||
#include "helpers/crypto.hpp"
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "helpers/utils.hpp"
|
||||
|
||||
namespace hex {
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#include "views/view_hexeditor.hpp"
|
||||
|
||||
#include "providers/provider.hpp"
|
||||
#include <hex/providers/provider.hpp>
|
||||
#include "providers/file_provider.hpp"
|
||||
|
||||
#include <GLFW/glfw3.h>
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
#include "views/view_information.hpp"
|
||||
|
||||
#include "providers/provider.hpp"
|
||||
|
||||
#include "helpers/utils.hpp"
|
||||
#include <hex/providers/provider.hpp>
|
||||
#include <hex/helpers/utils.hpp>
|
||||
|
||||
#include <cstring>
|
||||
#include <cmath>
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
#include "views/view_patches.hpp"
|
||||
|
||||
#include "providers/provider.hpp"
|
||||
#include <hex/providers/provider.hpp>
|
||||
|
||||
#include "helpers/utils.hpp"
|
||||
#include <hex/helpers/utils.hpp>
|
||||
#include "helpers/project_file_handler.hpp"
|
||||
|
||||
#include <string>
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
#include "views/view_pattern.hpp"
|
||||
|
||||
#include "lang/preprocessor.hpp"
|
||||
#include "lang/parser.hpp"
|
||||
#include "lang/lexer.hpp"
|
||||
#include "lang/validator.hpp"
|
||||
#include "lang/evaluator.hpp"
|
||||
#include <hex/lang/preprocessor.hpp>
|
||||
#include <hex/lang/parser.hpp>
|
||||
#include <hex/lang/lexer.hpp>
|
||||
#include <hex/lang/validator.hpp>
|
||||
#include <hex/lang/evaluator.hpp>
|
||||
|
||||
#include "helpers/project_file_handler.hpp"
|
||||
#include "helpers/utils.hpp"
|
||||
#include <hex/helpers/utils.hpp>
|
||||
|
||||
#include <magic.h>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#include "views/view_pattern_data.hpp"
|
||||
|
||||
#include "providers/provider.hpp"
|
||||
#include "lang/pattern_data.hpp"
|
||||
#include <hex/providers/provider.hpp>
|
||||
#include <hex/lang/pattern_data.hpp>
|
||||
|
||||
namespace hex {
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#include "views/view_settings.hpp"
|
||||
|
||||
#include "helpers/content_registry.hpp"
|
||||
#include <hex/api/content_registry.hpp>
|
||||
|
||||
namespace hex {
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#include "views/view_strings.hpp"
|
||||
|
||||
#include "providers/provider.hpp"
|
||||
#include "helpers/utils.hpp"
|
||||
#include <hex/providers/provider.hpp>
|
||||
#include <hex/helpers/utils.hpp>
|
||||
|
||||
#include <cstring>
|
||||
|
||||
|
||||
@@ -4,9 +4,10 @@
|
||||
#include <regex>
|
||||
#include <optional>
|
||||
|
||||
#include "providers/provider.hpp"
|
||||
#include <hex/providers/provider.hpp>
|
||||
#include <hex/helpers/utils.hpp>
|
||||
|
||||
#include "helpers/plugin_handler.hpp"
|
||||
#include "helpers/utils.hpp"
|
||||
|
||||
#include <llvm/Demangle/Demangle.h>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user