Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small change to support 7.5 #23

Open
dogmooz opened this issue Feb 28, 2021 · 2 comments
Open

Small change to support 7.5 #23

dogmooz opened this issue Feb 28, 2021 · 2 comments

Comments

@dogmooz
Copy link

dogmooz commented Feb 28, 2021

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
Copy link

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,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants
@dogmooz @AndyWatterman and others