jadeite/game_payload/include/pe.h
2023-08-04 00:28:53 +03:00

12 lines
249 B
C

#pragma once
#include <windows.h>
struct pe_section_info {
void *base_address;
size_t initialized_size;
};
void pe_find_section(HMODULE module, const char *section, struct pe_section_info *buf);
void *pe_find_entry_point(HMODULE module);