|
libPeConv
A library to load, manipulate, dump PE files.
|
#include <function_resolver.h>

Public Member Functions | |
| virtual FARPROC | resolve_func (LPSTR lib_name, LPSTR func_name) |
A default functions resolver, using LoadLibraryA and GetProcAddress.
Definition at line 28 of file function_resolver.h.
|
virtual |
Get the address (VA) of the function with the given name, from the given DLL, using LoadLibraryA and GetProcAddress.
| func_name | : the name of the function |
| lib_name | : the name of the DLL |
Implements peconv::t_function_resolver.
Reimplemented in peconv::export_based_resolver, and peconv::hooking_func_resolver.
Definition at line 5 of file function_resolver.cpp.