ajkhoury / SigMaker-x64

IDA Pro 7 compatible SigMaker plugin
535 stars 88 forks source link

Small change to support 7.5 #23

Open dogmooz opened 3 years ago

dogmooz commented 3 years ago

Needs int changed to size_t for 7.5 or it throws an error when compiling Aside from that seems to work fine.

size_t idaapi init( void ) { Settings.Init( ); Settings.Load( "sigmaker.ini" );

return PLUGIN_OK;

}

Thanks

AndyWatterman commented 3 years ago

The above did not help me. I've done:

plugmod_t* idaapi init( void )
{
    Settings.Init( );
    Settings.Load( "sigmaker.ini" );

    return PLUGIN_OK;
}

plugin_t PLUGIN = {
    IDP_INTERFACE_VERSION,
    PLUGIN_MOD,