Blame src/ibusenginesimpleprivate.h

Packit 3ff832
/* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */
Packit 3ff832
/* vim:set et sts=4: */
Packit 3ff832
/* ibus - The Input Bus
Packit 3ff832
 * Copyright (C) 2016 Takao Fujiwara <takao.fujiwara1@gmail.com>
Packit 3ff832
 * Copyright (C) 2016 Red Hat, Inc.
Packit 3ff832
 *
Packit 3ff832
 * This library is free software; you can redistribute it and/or
Packit 3ff832
 * modify it under the terms of the GNU Lesser General Public
Packit 3ff832
 * License as published by the Free Software Foundation; either
Packit 3ff832
 * version 2.1 of the License, or (at your option) any later version.
Packit 3ff832
 *
Packit 3ff832
 * This library is distributed in the hope that it will be useful,
Packit 3ff832
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 3ff832
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 3ff832
 * Lesser General Public License for more details.
Packit 3ff832
 *
Packit 3ff832
 * You should have received a copy of the GNU Lesser General Public
Packit 3ff832
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
Packit 3ff832
 */
Packit 3ff832
Packit 3ff832
#ifndef __IBUS_ENGINE_SIMPLE_PRIVATE_H__
Packit 3ff832
#define __IBUS_ENGINE_SIMPLE_PRIVATE_H__
Packit 3ff832
Packit 3ff832
#include <glib.h>
Packit 3ff832
Packit 3ff832
Packit 3ff832
G_BEGIN_DECLS
Packit 3ff832
Packit 3ff832
extern const IBusComposeTableCompact ibus_compose_table_compact;
Packit 3ff832
Packit 3ff832
gboolean ibus_check_algorithmically (const guint16              *compose_buffer,
Packit 3ff832
                                     gint                        n_compose,
Packit 3ff832
                                     gunichar                   *output);
Packit 3ff832
gboolean ibus_check_compact_table   (const IBusComposeTableCompact
Packit 3ff832
                                                                *table,
Packit 3ff832
                                     guint16                    *compose_buffer,
Packit 3ff832
                                     gint                        n_compose,
Packit 3ff832
                                     gboolean                   *compose_finish,
Packit 3ff832
                                     gunichar                   *output_char);
Packit 3ff832
Packit 3ff832
G_END_DECLS
Packit 3ff832
Packit 3ff832
Packit 3ff832
#endif /* __IBUS_IM_CONTEXT_SIMPLE_PRIVATE_H__ */