radare2/r2-bindings/vapi/r_line.vapi
pancake a4b57487bf * Fix pkg-config-symstall
- 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
2011-05-20 19:49:50 +02:00

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);
}
}