mirror-ac/module/module.h
donnaskiez ea2278e7b3
internal refactoring (#14)
- Refactor process list. New implementation consists of a hashmap. Each process entry then contains the associated user modules.
- Implement user module integrity checks on timer callback
2024-06-09 17:22:22 +10:00

18 lines
No EOL
295 B
C++

#pragma once
#include "common.h"
#include <Windows.h>
namespace module {
void run(HINSTANCE hinstDLL);
void terminate();
struct module_information {
void *base_address;
uint32_t size;
char path[MAX_PATH];
};
bool get_module_information(module_information *info);
} // namespace module