Blame clutter-gtk/gtk-clutter-util.h

Packit Service 6a0f92
/* gtk-clutter-util.h: GTK+ integration utilities
Packit Service 6a0f92
 *
Packit Service 6a0f92
 * Copyright (C) 2008 OpenedHand
Packit Service 6a0f92
 *
Packit Service 6a0f92
 * This library is free software; you can redistribute it and/or
Packit Service 6a0f92
 * modify it under the terms of the GNU Lesser General Public
Packit Service 6a0f92
 * License as published by the Free Software Foundation; either
Packit Service 6a0f92
 * version 2 of the License, or (at your option) any later version.
Packit Service 6a0f92
 *
Packit Service 6a0f92
 * This library is distributed in the hope that it will be useful,
Packit Service 6a0f92
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 6a0f92
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 6a0f92
 * Lesser General Public License for more details.
Packit Service 6a0f92
 *
Packit Service 6a0f92
 * You should have received a copy of the GNU Lesser General Public
Packit Service 6a0f92
 * License along with this library. If not see <http://www.fsf.org/licensing>.
Packit Service 6a0f92
 *
Packit Service 6a0f92
 * Authors:
Packit Service 6a0f92
 *   Emmanuele Bassi  <ebassi@openedhand.com>
Packit Service 6a0f92
 */
Packit Service 6a0f92
Packit Service 6a0f92
#if !defined(__CLUTTER_GTK_H_INSIDE__) && !defined(CLUTTER_GTK_COMPILATION)
Packit Service 6a0f92
#error "Only <clutter-gtk/clutter-gtk.h> can be included directly."
Packit Service 6a0f92
#endif
Packit Service 6a0f92
Packit Service 6a0f92
#ifndef __GTK_CLUTTER_UTIL_H__
Packit Service 6a0f92
#define __GTK_CLUTTER_UTIL_H__
Packit Service 6a0f92
Packit Service 6a0f92
#include <gtk/gtk.h>
Packit Service 6a0f92
#include <clutter/clutter.h>
Packit Service 6a0f92
#include <clutter-gtk/gtk-clutter-version.h>
Packit Service 6a0f92
Packit Service 6a0f92
G_BEGIN_DECLS
Packit Service 6a0f92
Packit Service 6a0f92
CLUTTER_GTK_EXTERN
Packit Service 6a0f92
ClutterInitError gtk_clutter_init           (int            *argc,
Packit Service 6a0f92
                                             char         ***argv)  G_GNUC_WARN_UNUSED_RESULT;
Packit Service 6a0f92
CLUTTER_GTK_EXTERN
Packit Service 6a0f92
ClutterInitError gtk_clutter_init_with_args (int            *argc,
Packit Service 6a0f92
                                             char         ***argv,
Packit Service 6a0f92
                                             const char     *parameter_string,
Packit Service 6a0f92
                                             GOptionEntry   *entries,
Packit Service 6a0f92
                                             const char     *translation_domain,
Packit Service 6a0f92
                                             GError        **error) G_GNUC_WARN_UNUSED_RESULT;
Packit Service 6a0f92
CLUTTER_GTK_EXTERN
Packit Service 6a0f92
GOptionGroup *gtk_clutter_get_option_group  (void);
Packit Service 6a0f92
Packit Service 6a0f92
G_END_DECLS
Packit Service 6a0f92
Packit Service 6a0f92
#endif /* __GTK_CLUTTER_UTIL_H__ */