| 1 | /* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */ |
| 2 | /* vim:set et sts=4: */ |
| 3 | /* ibus - The Input Bus |
| 4 | * Copyright (C) 2008-2013 Peng Huang <shawn.p.huang@gmail.com> |
| 5 | * Copyright (C) 2008-2013 Red Hat, Inc. |
| 6 | * |
| 7 | * This library is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU Lesser General Public |
| 9 | * License as published by the Free Software Foundation; either |
| 10 | * version 2.1 of the License, or (at your option) any later version. |
| 11 | * |
| 12 | * This library is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * Lesser General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU Lesser General Public |
| 18 | * License along with this library; if not, write to the Free Software |
| 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 |
| 20 | * USA |
| 21 | */ |
| 22 | |
| 23 | #if !defined (__IBUS_H_INSIDE__) && !defined (IBUS_COMPILATION) |
| 24 | #error "Only <ibus.h> can be included directly" |
| 25 | #endif |
| 26 | |
| 27 | #ifndef __IBUS_DEBUG_H_ |
| 28 | #define __IBUS_DEBUG_H_ |
| 29 | |
| 30 | /** |
| 31 | * SECTION: ibusdebug |
| 32 | * @short_description: Debug message output. |
| 33 | * @stability: Stable |
| 34 | * |
| 35 | * This section lists functions that generate debug and warning messages. |
| 36 | */ |
| 37 | |
| 38 | /** |
| 39 | * ibus_warning: |
| 40 | * @msg: A printf formatted message to be print. |
| 41 | * @...: Necessary arguments for @msg. |
| 42 | * |
| 43 | * A convenient wrapper for g_warning. |
| 44 | * The output format will be |
| 45 | * <programlisting> |
| 46 | * source_file:line, message... |
| 47 | * </programlisting> |
| 48 | */ |
| 49 | #define ibus_warning(msg, args...) \ |
| 50 | g_warning("%s:%d, " msg, __FILE__, __LINE__, ##args) |
| 51 | |
| 52 | #endif |
| 53 | |
| 54 | |