1 
2 /* This file is generated by glib-mkenums, do not modify it. This code is licensed under the same license as the containing project. Note that it links to GLib, so must comply with the LGPL linking clauses. */
3 
4 #include <glib-object.h>
5 
6 /* enumerations from "typedefs.h" */
7 #include "typedefs.h"
8 GType
fr_compression_get_type(void)9 fr_compression_get_type (void)
10 {
11   static GType etype = 0;
12   if (etype == 0) {
13     static const GEnumValue values[] = {
14       { FR_COMPRESSION_VERY_FAST, "FR_COMPRESSION_VERY_FAST", "very-fast" },
15       { FR_COMPRESSION_FAST, "FR_COMPRESSION_FAST", "fast" },
16       { FR_COMPRESSION_NORMAL, "FR_COMPRESSION_NORMAL", "normal" },
17       { FR_COMPRESSION_MAXIMUM, "FR_COMPRESSION_MAXIMUM", "maximum" },
18       { 0, NULL, NULL }
19     };
20     etype = g_enum_register_static ("FrCompression", values);
21   }
22   return etype;
23 }
24 GType
fr_overwrite_get_type(void)25 fr_overwrite_get_type (void)
26 {
27   static GType etype = 0;
28   if (etype == 0) {
29     static const GEnumValue values[] = {
30       { FR_OVERWRITE_YES, "FR_OVERWRITE_YES", "yes" },
31       { FR_OVERWRITE_NO, "FR_OVERWRITE_NO", "no" },
32       { FR_OVERWRITE_ASK, "FR_OVERWRITE_ASK", "ask" },
33       { 0, NULL, NULL }
34     };
35     etype = g_enum_register_static ("FrOverwrite", values);
36   }
37   return etype;
38 }
39 
40 /* Generated data ends here */
41 
42