[PR] この広告は3ヶ月以上更新がないため表示されています。
ホームページを更新後24時間以内に表示されなくなります。
00001 /****************************************************************************** 00002 * 00003 * $Id: message.h,v 1.8 2001/03/19 19:27:41 root Exp $ 00004 * 00005 * Copyright (C) 1997-2008 by Dimitri van Heesch. 00006 * 00007 * Permission to use, copy, modify, and distribute this software and its 00008 * documentation under the terms of the GNU General Public License is hereby 00009 * granted. No representations are made about the suitability of this software 00010 * for any purpose. It is provided "as is" without express or implied warranty. 00011 * See the GNU General Public License for more details. 00012 * 00013 * Documents produced by Doxygen are derivative works derived from the 00014 * input used in their production; they are not affected by this license. 00015 * 00016 */ 00017 00018 #ifndef MESSAGE_H 00019 #define MESSAGE_H 00020 00021 #include <stdio.h> 00022 00023 extern void msg(const char *fmt, ...); 00024 extern void warn(const char *file,int line,const char *fmt, ...); 00025 extern void warn_cont(const char *fmt, ...); 00026 extern void warn_undoc(const char *file,int line,const char *fmt, ...); 00027 extern void warn_doc_error(const char *file,int line,const char *fmt, ...); 00028 extern void err(const char *fmt, ...); 00029 void initWarningFormat(); 00030 00031 #endif