mirror of
https://gitea.tendokyu.moe/TeamTofuShop/capnhook.git
synced 2026-09-25 07:47:56 +03:00
12 lines
292 B
C
12 lines
292 B
C
#pragma once
|
|
|
|
#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);
|