Blame src/goa/goaenumtypes.c

Packit 79f644
Packit 79f644
/* 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. */
Packit 79f644
Packit 79f644
#include "goaenums.h"
Packit 79f644
#include "goaenumtypes.h"
Packit 79f644
/* enumerations from "goaenums.h" */
Packit 79f644
GType
Packit 79f644
goa_error_get_type (void)
Packit 79f644
{
Packit 79f644
  static volatile gsize g_define_type_id__volatile = 0;
Packit 79f644
Packit 79f644
  if (g_once_init_enter (&g_define_type_id__volatile))
Packit 79f644
    {
Packit 79f644
      static const GEnumValue values[] = {
Packit 79f644
        { GOA_ERROR_FAILED, "GOA_ERROR_FAILED", "failed" },
Packit 79f644
        { GOA_ERROR_NOT_SUPPORTED, "GOA_ERROR_NOT_SUPPORTED", "not-supported" },
Packit 79f644
        { GOA_ERROR_DIALOG_DISMISSED, "GOA_ERROR_DIALOG_DISMISSED", "dialog-dismissed" },
Packit 79f644
        { GOA_ERROR_ACCOUNT_EXISTS, "GOA_ERROR_ACCOUNT_EXISTS", "account-exists" },
Packit 79f644
        { GOA_ERROR_NOT_AUTHORIZED, "GOA_ERROR_NOT_AUTHORIZED", "not-authorized" },
Packit 79f644
        { GOA_ERROR_SSL, "GOA_ERROR_SSL", "ssl" },
Packit 79f644
        { 0, NULL, NULL }
Packit 79f644
      };
Packit 79f644
      GType g_define_type_id =
Packit 79f644
        g_enum_register_static (g_intern_static_string ("GoaError"), values);
Packit 79f644
      g_once_init_leave (&g_define_type_id__volatile, g_define_type_id);
Packit 79f644
    }
Packit 79f644
Packit 79f644
  return g_define_type_id__volatile;
Packit 79f644
}
Packit 79f644
Packit 79f644
/* Generated data ends here */
Packit 79f644