You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
166 B

// 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,
}