Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
idapro / opt / ida90 / libexec / idapro / idc / marktest.idc
Size: Mime:
//
//      This example shows how to get list of marked positions.
//

#include <idc.idc>

static main() {
  auto x;

  put_bookmark(get_screen_ea(),10,5,5,6,"Test of Mark Functions");
  for ( x=0; x<10; x++ )
    msg("%d: %a %s\n",x,get_bookmark(x),get_bookmark_desc(x));
}