[go: up one dir, main page]

File: tilda-enum-types.c

package info (click to toggle)
tilda 2.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,708 kB
  • sloc: ansic: 8,286; sh: 4,917; makefile: 169; xml: 54; sed: 16
file content (31 lines) | stat: -rw-r--r-- 902 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31

/* 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. */

#include "tilda-enum-types.h"
/* enumerations from "../src/tilda-search-box.h" */
#include "../src/tilda-search-box.h"
GType
tilda_search_direction_get_type (void)
{
    static GType the_type = 0;

    if (the_type == 0)
    {
        static const GEnumValue values[] = {
            { SEARCH_FORWARD,
              "SEARCH_FORWARD",
              "forward" },
            { SEARCH_BACKWARD,
              "SEARCH_BACKWARD",
              "backward" },
            { 0, NULL, NULL }
        };
        the_type = g_enum_register_static (
                g_intern_static_string ("TildaSearchDirection"),
                values);
    }
    return the_type;
}

/* Generated data ends here */