Hello,
I tried to use an IDC file to start the debugger plugin without user interaction.
But I failed.
Please let me know what's wrong.
===============================================
IDC file contains :
static main()
{
RunPlugin("TestStepTracing", 1);
// Exit(0);
}
==============================================
TestStepTracing plugin's run() contains :
void run(int arg)
{
if ( !hook_to_notification_point(HT_DBG, callback, NULL) )
{
warning("Could not hook to notification point\n");
return;
}
if ( !run_to(inf.beginEA) )
{
warning("Sorry, could not start the process");
unhook_from_notification_point(HT_DBG, callback, NULL);
}
}
===================================================
When I executed "idag -c -A -Smy.idc input-file",
run_to returned false.(FAILED!!)
Thanks.







