system/libfmq/tests/aidl/android/fmq/test/EventFlagBits.aidl

10 lines
166 B
Plaintext
Raw Normal View History

2025-08-25 08:01:50 +08:00
// FIXME: license file if you have one
package android.fmq.test;
@Backing(type="int")
enum EventFlagBits {
FMQ_NOT_EMPTY = 1 << 0,
FMQ_NOT_FULL = 1 << 1,
}