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