The Meson Build System
http://mesonbuild.com/
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.
19 lines
369 B
19 lines
369 B
8 years ago
|
typedef enum
|
||
|
{
|
||
|
MESON_THE_XVALUE,
|
||
|
MESON_ANOTHER_VALUE
|
||
|
} MesonTheXEnum;
|
||
|
|
||
|
typedef enum /*< skip >*/
|
||
|
{
|
||
|
MESON_FOO
|
||
|
} MesonThisEnumWillBeSkipped;
|
||
|
|
||
|
typedef enum /*< flags,prefix=MESON >*/
|
||
|
{
|
||
|
MESON_THE_ZEROTH_VALUE, /*< skip >*/
|
||
|
MESON_THE_FIRST_VALUE,
|
||
|
MESON_THE_SECOND_VALUE,
|
||
|
MESON_THE_THIRD_VALUE, /*< nick=the-last-value >*/
|
||
|
} MesonTheFlagsEnum;
|