mirror of
https://github.com/radareorg/radare2.git
synced 2025-03-04 12:27:40 +00:00

- Previous commits has been reported in the ChangeLog file - hg log has been lost (moved inside ChangeLog) - Old radare1 repository has removed all the libr
20 lines
501 B
Vala
20 lines
501 B
Vala
[CCode (cheader_filename="r_config.h", cprefix="r_", lower_case_cprefix="r_")]
|
|
namespace Radare {
|
|
[Compact]
|
|
[CCode (cname="struct r_config_t", free_function="r_config_free")]
|
|
public class Config {
|
|
public void setup(int os, int arch);
|
|
public void setup_file(string file);
|
|
|
|
public int eval(string str);
|
|
|
|
public int get(string name);
|
|
public string get_i(string name);
|
|
|
|
public string set(string name, string val);
|
|
public string set_i(string name, string val);
|
|
|
|
public void list();
|
|
}
|
|
}
|