1
0
mirror of synced 2024-11-27 17:10:51 +01:00
ImHex/plugins/windows/source/content/providers.cpp

11 lines
237 B
C++

#include <hex/api/content_registry.hpp>
#include <content/providers/process_memory_provider.hpp>
namespace hex::plugin::windows {
void registerProviders() {
ContentRegistry::Provider::add<ProcessMemoryProvider>();
}
}