radare2/r2-bindings/vapi/r_line.vapi
pancake 16866fe504 * Do not build asm.x86_as or asm.x86_nasm
- Deprecated as being problematic. x86.nz and x86.olly ftw
* Fix singleton crash in swig bindings
  - Requires valabind-tip
* Added 'wa*' and 'waf*' commands to show bytes instead of writing
2011-10-09 21:54:14 +02:00

18 lines
544 B
Vala

/* radare - LGPL - Copyright 2009-2011 pancake<nopcode.org> */
namespace Radare {
[Compact]
[CCode (cname="RLine", cheader_filename="r_line.h", cprefix="r_line_")]
public class RLine {
//public RLine();
public static RLine singleton();
public static bool readline (); //int argc, char **argv);
public static void set_prompt (string promp);
public static bool hist_load (string file);
public static bool hist_add (string line);
public static bool hist_save (string file);
//public static bool hist_label (string file);
}
}