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.
 
 
 
 
 
 

15 lines
264 B

#ifndef __EXAMPLE_ENUMS_H__
#define __EXAMPLE_ENUMS_H__
G_BEGIN_DECLS
typedef enum {
EXAMPLE_VERBOSITY_ERRORS,
EXAMPLE_VERBOSITY_MINIMAL,
EXAMPLE_VERBOSITY_DETAILED,
EXAMPLE_VERBOSITY_DEBUG,
} ExampleVerbosity;
G_END_DECLS
#endif /* __EXAMPLE_ENUMS_H__ */