summaryrefslogtreecommitdiffstats
path: root/win32/common/gstudp-enumtypes.c
blob: 46f19db863c392737bf31e7e6ee4744466dafe8e (plain)
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

/* Generated data (by glib-mkenums) */

#include <gstudp.h>

/* enumerations from "gstudp.h" */
GType
gst_udp_control_get_type (void)
{
  static GType etype = 0;

  if (etype == 0) {
    static const GEnumValue values[] = {
      {CONTROL_ZERO, "CONTROL_ZERO", "zero"},
      {CONTROL_NONE, "CONTROL_NONE", "none"},
      {CONTROL_UDP, "CONTROL_UDP", "udp"},
      {CONTROL_TCP, "CONTROL_TCP", "tcp"},
      {0, NULL, NULL}
    };
    etype = g_enum_register_static ("GstUDPControl", values);
  }
  return etype;
}

/* Generated data ends here */