mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-01 21:17:44 -05:00
impr: Further improve compile times
This commit is contained in:
@@ -51,8 +51,8 @@ namespace hex::plugin::windows {
|
||||
bool drawLoadInterface() override;
|
||||
void drawInterface() override;
|
||||
|
||||
void loadSettings(const nlohmann::json &) override {}
|
||||
[[nodiscard]] nlohmann::json storeSettings(nlohmann::json) const override { return { }; }
|
||||
void loadSettings(const nlohmann::json &) override;
|
||||
[[nodiscard]] nlohmann::json storeSettings(nlohmann::json) const override;
|
||||
|
||||
[[nodiscard]] std::string getTypeName() const override {
|
||||
return "hex.windows.provider.process_memory";
|
||||
|
||||
@@ -12,6 +12,8 @@
|
||||
|
||||
#include <wolv/utils/guards.hpp>
|
||||
|
||||
#include <nlohmann/json.hpp>
|
||||
|
||||
namespace hex::plugin::windows {
|
||||
|
||||
bool ProcessMemoryProvider::open() {
|
||||
@@ -300,4 +302,14 @@ namespace hex::plugin::windows {
|
||||
return Provider::queryInformation(category, argument);
|
||||
}
|
||||
|
||||
void ProcessMemoryProvider::loadSettings(const nlohmann::json&) {
|
||||
|
||||
}
|
||||
|
||||
nlohmann::json ProcessMemoryProvider::storeSettings(nlohmann::json) const {
|
||||
return {};
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user