Change pe_find_section interface
This commit is contained in:
@ -2,5 +2,10 @@
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
void pe_find_section(HMODULE module, const char *section, MEMORY_BASIC_INFORMATION *buf);
|
||||
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);
|
||||
|
||||
Reference in New Issue
Block a user