Skip to content

Commit a09b822

Browse files
committed
Add TcgOpFlag
1 parent 1aa3909 commit a09b822

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

bindings/rust/src/unicorn_const.rs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,15 @@ bitflags! {
133133
}
134134
}
135135

136+
bitflags! {
137+
#[repr(C)]
138+
#[derive(Copy, Clone)]
139+
pub struct TcgOpFlag: i32 {
140+
const FLAG_CMP = 1;
141+
const FLAG_DIRECT = 2;
142+
}
143+
}
144+
136145
#[repr(C)]
137146
#[derive(PartialEq, Debug, Clone, Copy)]
138147
#[allow(clippy::upper_case_acronyms)]

0 commit comments

Comments
 (0)