mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-14 19:08:04 +00:00
![pancake](/assets/img/avatar_default.png)
- 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
18 lines
544 B
Vala
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);
|
|
}
|
|
}
|