mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-01 00:51:19 +00:00
* Remove parser stuff from r_asm in .vapi and .h definition
This commit is contained in:
parent
c326db2e77
commit
e7392e64db
@ -30,12 +30,6 @@ enum {
|
||||
R_ASM_SYN_ATT
|
||||
};
|
||||
|
||||
enum {
|
||||
R_ASM_PAR_NULL = 0,
|
||||
R_ASM_PAR_PSEUDO,
|
||||
R_ASM_PAR_REALLOC
|
||||
};
|
||||
|
||||
typedef struct r_asm_aop_t {
|
||||
int inst_len;
|
||||
ut8 buf[R_ASM_BUFSIZE];
|
||||
|
@ -28,13 +28,6 @@ namespace Radare {
|
||||
ATT = 2,
|
||||
}
|
||||
|
||||
[CCode (cprefix="R_ASM_PAR_", cname="int")]
|
||||
public enum Parser {
|
||||
NULL = 0,
|
||||
PSEUDO = 1,
|
||||
REALLOC = 2
|
||||
}
|
||||
|
||||
[Compact]
|
||||
[CCode (cname="struct r_asm_aop_t", destroy_function="" )]
|
||||
public struct Aop {
|
||||
@ -67,7 +60,7 @@ namespace Radare {
|
||||
|
||||
public rAsm();
|
||||
|
||||
public int init();
|
||||
public weak rAsm init();
|
||||
public int list();
|
||||
public bool use(string name);
|
||||
// public bool set_arch(Asm.Arch arch);
|
||||
|
Loading…
Reference in New Issue
Block a user