From 28f41cf689def99fb586bfca47b7e1786227a5a2 Mon Sep 17 00:00:00 2001 From: navewindre Date: Fri, 12 Jul 2024 05:40:41 +0200 Subject: base shit --- src/ntutil.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/ntutil.h') diff --git a/src/ntutil.h b/src/ntutil.h index feca8f6..4891c02 100644 --- a/src/ntutil.h +++ b/src/ntutil.h @@ -16,7 +16,7 @@ struct MODULE_EXPORT { }; struct MODULE_EXPORT64 { - STR<256> name; + STR<1024> name; U64 base; }; @@ -243,8 +243,7 @@ inline std::vector< MODULE_EXPORT64 > module_get_exports64( U64 module_base, HAN nt_read_vm64( proc, ords + 0x2 * i, &ord, 0x2 ); nt_read_vm64( proc, funcs + 0x4 * ord, &func, 0x4 ); - - ret.push_back( { STR<128>( name ), module_base + func } ); + ret.push_back( { STR<1024>( name ), module_base + func } ); } return ret; -- cgit v1.2.3