mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
ea2278e7b3
- 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
18 lines
No EOL
295 B
C++
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
|