Std.CommandCommands that can be passed into an IDA session
type 'a t = 'a commandcreate lang ~script ~parser create a command that will execute a script, written in a given language, at then parse the output using the specified parser function.
If a script needs to output information, it must use a filename $output (that will be substituted with the real file name).
The parse name will get the name of the output file, so that it can read and parse it.
val script : 'a t -> stringscript command the script text
val parser : 'a t -> string -> 'aparser command the associated parser function.