Files
djhackersdev_bemanitools/src/main/hook/peb.h
T
2019-09-27 22:36:50 +02:00

15 lines
325 B
C

#ifndef HOOK_PEB_H
#define HOOK_PEB_H
#include <windows.h>
#include <winternl.h>
typedef LDR_DATA_TABLE_ENTRY peb_dll_t;
const peb_dll_t *peb_dll_get_first(void);
const peb_dll_t *peb_dll_get_next(const peb_dll_t *dll);
HMODULE peb_dll_get_base(const peb_dll_t *dll);
char *peb_dll_dup_name(const peb_dll_t *dll);
#endif