Blame src/ibusinternal.h

Packit Service 1d8f1c
/* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */
Packit Service 1d8f1c
/* vim:set et sts=4: */
Packit Service 1d8f1c
/* ibus - The Input Bus
Packit Service 1d8f1c
 * Copyright (C) 2008-2010 Peng Huang <shawn.p.huang@gmail.com>
Packit Service 1d8f1c
 * Copyright (C) 2008-2010 Red Hat, Inc.
Packit Service 1d8f1c
 *
Packit Service 1d8f1c
 * This library is free software; you can redistribute it and/or
Packit Service 1d8f1c
 * modify it under the terms of the GNU Lesser General Public
Packit Service 1d8f1c
 * License as published by the Free Software Foundation; either
Packit Service 1d8f1c
 * version 2.1 of the License, or (at your option) any later version.
Packit Service 1d8f1c
 *
Packit Service 1d8f1c
 * This library is distributed in the hope that it will be useful,
Packit Service 1d8f1c
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 1d8f1c
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 1d8f1c
 * Lesser General Public License for more details.
Packit Service 1d8f1c
 *
Packit Service 1d8f1c
 * You should have received a copy of the GNU Lesser General Public
Packit Service 1d8f1c
 * License along with this library; if not, write to the Free Software
Packit Service 1d8f1c
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
Packit Service 1d8f1c
 * USA
Packit Service 1d8f1c
 */
Packit Service 1d8f1c
Packit Service 1d8f1c
#if !defined (__IBUS_H_INSIDE__) && !defined (IBUS_COMPILATION)
Packit Service 1d8f1c
#error "Only <ibus.h> can be included directly"
Packit Service 1d8f1c
#endif
Packit Service 1d8f1c
Packit Service 1d8f1c
#ifndef __IBUS_INTERNEL_H_
Packit Service 1d8f1c
#define __IBUS_INTERNEL_H_
Packit Service 1d8f1c
Packit Service 1d8f1c
#include <glib.h>
Packit Service 1d8f1c
/**
Packit Service 1d8f1c
 * I_:
Packit Service 1d8f1c
 * @string: A string
Packit Service 1d8f1c
 * @returns: The canonical representation for the string.
Packit Service 1d8f1c
 *
Packit Service 1d8f1c
 * Returns a canonical representation for string.
Packit Service 1d8f1c
 * Interned strings can be compared for equality by comparing the pointers, instead of using strcmp().
Packit Service 1d8f1c
 */
Packit Service 1d8f1c
#define I_(string) g_intern_static_string (string)
Packit Service 1d8f1c
Packit Service 1d8f1c
/**
Packit Service 1d8f1c
 * DBUS_SERVICE_DBUS:
Packit Service 1d8f1c
 *
Packit Service 1d8f1c
 * Address of D-Bus service.
Packit Service 1d8f1c
 */
Packit Service 1d8f1c
#define DBUS_SERVICE_DBUS "org.freedesktop.DBus"
Packit Service 1d8f1c
Packit Service 1d8f1c
/**
Packit Service 1d8f1c
 * DBUS_PATH_DBUS:
Packit Service 1d8f1c
 *
Packit Service 1d8f1c
 * D-Bus path for D-Bus.
Packit Service 1d8f1c
 */
Packit Service 1d8f1c
#define DBUS_PATH_DBUS "/org/freedesktop/DBus"
Packit Service 1d8f1c
Packit Service 1d8f1c
/**
Packit Service 1d8f1c
 * DBUS_INTERFACE_DBUS:
Packit Service 1d8f1c
 *
Packit Service 1d8f1c
 * D-Bus interface for D-Bus.
Packit Service 1d8f1c
 */
Packit Service 1d8f1c
#define DBUS_INTERFACE_DBUS "org.freedesktop.DBus"
Packit Service 1d8f1c
Packit Service 1d8f1c
G_GNUC_INTERNAL void
Packit Service 1d8f1c
ibus_g_variant_get_child_string (GVariant *variant, gsize index, char **str);
Packit Service 1d8f1c
Packit Service 1d8f1c
#endif
Packit Service 1d8f1c