bitflag enum jnc.PtrTypeFlags

bitflag enum PtrTypeFlags {
    Safe       = 0x00010000,
    Const      = 0x00020000,
    MaybeConst = 0x00040000,
    ConstIf    = 0x00080000,
    ReadOnly   = 0x00100000,
    Volatile   = 0x00200000,
    Event      = 0x00400000,
    DualEvent  = 0x00800000,
    Bindable   = 0x01000000,
    AutoGet    = 0x02000000,
    BigEndian  = 0x04000000,
    BitField   = 0x08000000,
    ThinThis   = 0x10000000,
};