Add TcgOpFlag

This commit is contained in:
mio
2025-03-20 16:51:54 +08:00
parent 1aa3909c78
commit a09b822d8c

View File

@@ -133,6 +133,15 @@ bitflags! {
}
}
bitflags! {
#[repr(C)]
#[derive(Copy, Clone)]
pub struct TcgOpFlag: i32 {
const FLAG_CMP = 1;
const FLAG_DIRECT = 2;
}
}
#[repr(C)]
#[derive(PartialEq, Debug, Clone, Copy)]
#[allow(clippy::upper_case_acronyms)]