mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-10 08:14:35 +00:00
![pancake](/assets/img/avatar_default.png)
- Update all .pc files * Fix 'pf d*' segfault - Show flag references in all 'pf' values * Many bugfixes in vapis - Use nested namespaces instead of static classes - Static classes was deprecated in Vala some years ago - All bindings are working again - C++ support has been added - Guile is now compiled by default * Added ./configure-langs to select which langs to use - Use --enable=python,perl or --disable=guile
16 lines
458 B
Vala
16 lines
458 B
Vala
/* radare - LGPL - Copyright 2009 pancake<nopcode.org> */
|
|
|
|
namespace Radare {
|
|
[Compact]
|
|
[CCode (cheader_filename="r_line.h", cprefix="r_line_")]
|
|
public class RLine {
|
|
public RLine(); //string symname);
|
|
public static bool readline (); //int argc, char **argv);
|
|
|
|
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);
|
|
}
|
|
}
|