Files
jadeite/game_payload/include/pe.h

8 lines
156 B
C
Raw Normal View History

2023-06-06 00:23:08 +03:00
#pragma once
#include <windows.h>
IMAGE_SECTION_HEADER *pe_find_section(HMODULE module, const char *section);
2023-08-04 00:28:53 +03:00
2023-06-06 00:23:08 +03:00
void *pe_find_entry_point(HMODULE module);