gst_plugins_base/gst/tcp/gsttcp-enumtypes.c
changeset 0 0e761a78d257
equal deleted inserted replaced
-1:000000000000 0:0e761a78d257
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *
       
    16 */
       
    17 
       
    18 /* Generated data (by glib-mkenums) */
       
    19 
       
    20 #include "gsttcp-enumtypes.h"
       
    21 
       
    22 #include "gsttcp.h"
       
    23 
       
    24 /* enumerations from "gsttcp.h" */
       
    25 #ifdef __SYMBIAN32__
       
    26 EXPORT_C
       
    27 #endif
       
    28 
       
    29 GType
       
    30 gst_tcp_protocol_get_type (void)
       
    31 {
       
    32   static GType etype = 0;
       
    33   if (etype == 0) {
       
    34     static const GEnumValue values[] = {
       
    35       { GST_TCP_PROTOCOL_NONE, "GST_TCP_PROTOCOL_NONE", "none" },
       
    36       { GST_TCP_PROTOCOL_GDP, "GST_TCP_PROTOCOL_GDP", "gdp" },
       
    37       { 0, NULL, NULL }
       
    38     };
       
    39     etype = g_enum_register_static ("GstTCPProtocol", values);
       
    40   }
       
    41   return etype;
       
    42 }
       
    43 
       
    44 /* Generated data ends here */
       
    45