libpurple/glibcompat.h

Sat, 03 Aug 2013 20:35:56 +0530

author
Ankit Vani <a@nevitus.org>
date
Sat, 03 Aug 2013 20:35:56 +0530
branch
soc.2013.gobjectification.plugins
changeset 36433
ff659a466f19
parent 33890
4a1b14508788
child 34456
d69aa7d3530c
permissions
-rw-r--r--

OCD

/* pidgin
 *
 * Pidgin is the legal property of its developers, whose names are too numerous
 * to list here.  Please refer to the COPYRIGHT file distributed with this
 * source distribution.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
 */
#ifndef _PIDGINGLIBCOMPAT_H_
#define _PIDGINGLIBCOMPAT_H_

/* This file is internal to Pidgin. Do not use!
 * Also, any public API should not depend on this file.
 */

#if !GLIB_CHECK_VERSION(2, 32, 0)

#define G_GNUC_BEGIN_IGNORE_DEPRECATIONS
#define G_GNUC_END_IGNORE_DEPRECATIONS

static inline GThread * g_thread_try_new(const gchar *name, GThreadFunc func,
	gpointer data, GError **error)
{
	return g_thread_create(func, data, TRUE, error);
}

#if !GLIB_CHECK_VERSION(2, 28, 0)

static inline gint64 g_get_monotonic_time(void)
{
	GTimeVal time_s;

	g_get_current_time(&time_s);

	return ((gint64)time_s.tv_sec << 32) | time_s.tv_usec;
}

static inline void g_list_free_full(GList *list, GDestroyNotify free_func)
{
	g_list_foreach(list, (GFunc)free_func, NULL);
	g_list_free(list);
}

static inline void g_slist_free_full(GSList *list, GDestroyNotify free_func)
{
	g_slist_foreach(list, (GFunc)free_func, NULL);
	g_slist_free(list);
}

#endif /* < 2.28.0 */

#endif /* < 2.32.0 */

#endif /* _PIDGINGLIBCOMPAT_H_ */

mercurial