mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-03 12:12:06 +00:00
* Added r_parse vapi file
This commit is contained in:
parent
66b702069e
commit
c52849b2e5
22
libr/vapi/r_parse.vapi
Normal file
22
libr/vapi/r_parse.vapi
Normal file
@ -0,0 +1,22 @@
|
||||
/* radare - LGPL - Copyright 2009 pancake<@nopcode.org> */
|
||||
|
||||
[CCode (cheader_filename="r_parse.h", cprefix="r_parse_", lower_case_cprefix="r_parse_")]
|
||||
namespace Radare {
|
||||
[Compact]
|
||||
[CCode (cname="struct r_parse_t", free_function="r_parse_free", cprefix="r_parse_")]
|
||||
public class Parse {
|
||||
|
||||
public Parse();
|
||||
|
||||
public int init();
|
||||
public int list();
|
||||
public bool set(string name);
|
||||
public bool assemble(ref string dst, string src);
|
||||
public bool parse(ref string dst, string src);
|
||||
public void set_user_ptr(void *user);
|
||||
//TODO public bool @add();
|
||||
|
||||
// This is the destructor
|
||||
public void free();
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user