00001 /* 00002 * SCIM Bridge 00003 * 00004 * Copyright (c) 2006 Ryo Dairiki <ryo-dairiki@users.sourceforge.net> 00005 * 00006 * 00007 * This library is free software; you can redistribute it and/or 00008 * modify it under the terms of the GNU Lesser General Public 00009 * License as published by the Free Software Foundation; either 00010 * version 2 of the License, or (at your option) any later version.* 00011 * This library is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the 00014 * GNU Lesser General Public License for more details.* 00015 * You should have received a copy of the GNU Lesser General Public 00016 * License along with this program; if not, write to the 00017 * Free Software Foundation, Inc., 59 Temple Place, Suite 330, 00018 * Boston, MA 02111-1307 USA 00019 */ 00020 00026 #ifndef SCIMBRIDGEOUTPUT_H_ 00027 #define SCIMBRIDGEOUTPUT_H_ 00028 00029 #include "scim-bridge.h" 00030 #include "scim-bridge-debug.h" 00031 00032 #ifdef __cplusplus 00033 extern "C" 00034 { 00035 #endif 00036 00043 void scim_bridge_println (const char *format,...); 00044 00051 void scim_bridge_perrorln (const char *format,...); 00052 00062 void scim_bridge_pdebugln (scim_bridge_debug_level_t level, const char *format,...); 00063 00070 void scim_bridge_print (const char *format,...); 00071 00078 void scim_bridge_perror (const char *format,...); 00079 00089 void scim_bridge_pdebug (scim_bridge_debug_level_t level, const char *format,...); 00090 00091 #ifdef __cplusplus 00092 } 00093 #endif 00094 #endif /*SCIMBRIDGEOUTPUT_H_*/
1.4.6