jadeite/game_payload/include/pe.h

12 lines
249 B
C
Raw Normal View History

2023-06-05 21:23:08 +00:00
#pragma once
#include <windows.h>
2023-08-03 21:28:53 +00:00
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);
2023-06-05 21:23:08 +00:00
void *pe_find_entry_point(HMODULE module);