Blame glib/glib/glib-init.h

Packit db3073
/*
Packit db3073
 * Copyright © 2011 Canonical Limited
Packit db3073
 *
Packit db3073
 * This library is free software; you can redistribute it and/or modify
Packit db3073
 * it under the terms of the GNU Lesser General Public License as
Packit db3073
 * published by the Free Software Foundation; either version 2 of the
Packit db3073
 * licence, or (at your option) any later version.
Packit db3073
 *
Packit db3073
 * This library is distributed in the hope that it will be useful, but
Packit db3073
 * WITHOUT ANY WARRANTY; without even the implied warranty of
Packit db3073
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit db3073
 * Lesser General Public License for more details.
Packit db3073
 *
Packit db3073
 * You should have received a copy of the GNU Lesser General Public
Packit db3073
 * License along with this library; if not, write to the Free Software
Packit db3073
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
Packit db3073
 * USA.
Packit db3073
 *
Packit db3073
 * Author: Ryan Lortie <desrt@desrt.ca>
Packit db3073
 */
Packit db3073
Packit db3073
#ifndef __GLIB_INIT_H__
Packit db3073
#define __GLIB_INIT_H__
Packit db3073
Packit db3073
#include "gmessages.h"
Packit db3073
Packit db3073
G_GNUC_INTERNAL extern GLogLevelFlags g_log_always_fatal;
Packit db3073
G_GNUC_INTERNAL extern GLogLevelFlags g_log_msg_prefix;
Packit db3073
GLIB_VAR gboolean g_mem_gc_friendly;
Packit db3073
Packit db3073
#ifdef G_OS_WIN32
Packit db3073
#include <windows.h>
Packit db3073
Packit db3073
G_GNUC_INTERNAL void g_thread_win32_thread_detach (void);
Packit db3073
G_GNUC_INTERNAL void g_thread_win32_init (void);
Packit db3073
G_GNUC_INTERNAL void g_clock_win32_init (void);
Packit db3073
G_GNUC_INTERNAL extern HMODULE glib_dll;
Packit db3073
#endif
Packit db3073
Packit db3073
#endif /* __GLIB_INIT_H__ */