mirror of
https://github.com/ApfelTeeSaft/IDAExecFunctionsImporter.git
synced 2026-08-27 03:33:37 +00:00
61de201495ff5bb2bebb389fc8b81e48b1d3be01
IDAExecFunctionsImporter
This is an IDA-Plugin to import names from a file into the database.
This plugin can be used with .idmap files generated by Dumper-7.
Currently imported:
- Virtual Function Table names: eg. UClass_VFT
- UFunction::ExecFunction names: eg. APlayerController::execCanRestartPlayer
Format expected by the plugin:
struct Identifier
{
uint32 Offset; // Relative to Imagebase
uint16 NameLength;
const char Name[NameLength]; // Not NULL-terminated
};
| Exec-Functions | VirtualFunctionTables |
|---|---|
Languages
C++
100%