ida plug-in helloworld

4690 단어 helloworld
#include <ida.hpp>
#include <idp.hpp>
#include <loader.hpp>
#include <kernwin.hpp>

int __stdcall IDP_init(void)
{
  //        ,                 。
  if ( 0 )
  {
    error("sorry!");
    return PLUGIN_SKIP;
  }
  return PLUGIN_KEEP;
}

void __stdcall IDP_term(void)
{
  //      ,                  。
  return;                                                                       
}

//      plugins.cfg   ,         。
//              ,              ,     。
void __stdcall IDP_run(int arg)
{
  //      
  msg("Hello world!
"); return; } // Edit->Plugins , , plugins.cfg char IDP_name[] = "My plugin"; char IDP_comment[] = "This is my test plug-in"; char IDP_help[] = "My plugin"; char IDP_hotkey[] = "Ctrl-Alt-X"; // // PLUGIN 。 plugin_t PLUGIN = { IDP_INTERFACE_VERSION, // IDA version plug-in is written for 0, // Flags (see below) IDP_init, // Initialisation function IDP_term, // Clean-up function IDP_run, // Main plug-in body IDP_comment, // Comment – unused IDP_help, // As above – unused IDP_name, // Plug-in name shown in Edit->Plugins menu IDP_hotkey // Hot key to run the plug-in };

좋은 웹페이지 즐겨찾기