core-foundation-rs
core-foundation-rs copied to clipboard
Options should be implemented as bitflags, not enum
For example, NSApplicationActivationOptions
allow a value of 0 (default behaviour) or a combination of flags (NSApplicationActivateAllWindows | NSApplicationActivateIgnoringOtherApps
), but with it being implemented as enum, neither is not possible.