loudmouth/lm-error.c
author hallski <hallski>
Fri, 13 Jun 2003 16:08:46 +0000
changeset 7 d8eae83450ac
parent 4 52f92481d8de
child 57 6b168a8917f7
permissions -rw-r--r--
2003-06-13 Mikael Hallendal <micke@imendio.com> * AUTHORS: updated contact information * README: updated contact information * loudmouth/*.[ch]: updated email address * loudmouth/lm-message-node.c: don't lower case the XML * loudmouth/lm-message.c: (message_type_from_string): use strcmp rather than strcasecmp * loudmouth/lm-parser.c: (parser_start_node_cb), (parser_end_node_cb), (lm_parser_new): use strcmp instead of strcasecmp

/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * Copyright (C) 2003 Mikael Hallendal <micke@imendio.com>
 * Copyright (C) 2003 CodeFactory AB. 
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

#include <config.h>
#include <glib/gerror.h>
#include "lm-error.h"

GQuark
lm_error_quark (void)
{
	static GQuark q = 0;

	if (q == 0) {
		q = g_quark_from_static_string ("lm-error-quark");
	}
	
	return q;
}