This commit is contained in:
es3n1n
2025-05-07 17:01:09 +09:00
commit a49f027fde
33 changed files with 2609 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#pragma once
#include <string>
#include <string_view>
#include <Windows.h>
namespace loader {
struct Config {
public:
std::string name;
bool disable;
bool verbose;
bool from_autorun;
};
[[nodiscard]] HANDLE inject(std::string_view dll_path, std::string_view proc_name);
[[nodiscard]] bool add_to_autorun();
[[nodiscard]] bool remove_from_autorun();
} // namespace loader