#include "peconv/exports_lookup.h"
#include "peconv/util.h"
#include <iostream>
Go to the source code of this file.
|
bool | is_wanted_func (LPCSTR curr_name, LPCSTR wanted_name) |
|
bool | is_ordinal (IMAGE_EXPORT_DIRECTORY *exp, LPCSTR func_name) |
|
FARPROC | get_export_by_ord (PVOID modulePtr, IMAGE_EXPORT_DIRECTORY *exp, DWORD wanted_ordinal) |
|
◆ TO_LOWERCASE
#define TO_LOWERCASE |
( |
| c1 | ) |
|
Value:c1 = (c1 <= 'Z' && c1 >= 'A') ? c1 = (c1 - 'A') + 'a': c1;
Definition at line 23 of file exports_lookup.cpp.
◆ get_export_by_ord()
FARPROC get_export_by_ord |
( |
PVOID | modulePtr, |
|
|
IMAGE_EXPORT_DIRECTORY * | exp, |
|
|
DWORD | wanted_ordinal ) |
◆ is_ordinal()
bool is_ordinal |
( |
IMAGE_EXPORT_DIRECTORY * | exp, |
|
|
LPCSTR | func_name ) |
◆ is_wanted_func()
bool is_wanted_func |
( |
LPCSTR | curr_name, |
|
|
LPCSTR | wanted_name ) |