
/*
* File generated by Dumper-7
*
* https://github.com/Encryqed/Dumper-7
*/

Supported: IDA 7.7 and above (including IDA 8.3)

'.idmap' files can be used to import the names of VFTables and Exec functions, with the following plugin:

https://github.com/Fischsalat/IDAExecFunctionsImporter


FileFormat:

An '.idmap' file is just an array of Identifiers. All the plugin does is give variables/functions at a certain offset a certain name.

struct Identifier
{
    uint32 Offset; // Relative to Imagebase
    uint16 NameLength;
    const char Name[NameLength]; // Not NULL-terminated
};
