00001 #ifndef __INFO_H__ 00002 #define __INFO_H__ 00003 00004 /* 00005 Copyright (c) 2006-2009 Trevor Williams 00006 00007 This program is free software; you can redistribute it and/or modify 00008 it under the terms of the GNU General Public License as published by the Free Software 00009 Foundation; either version 2 of the License, or (at your option) any later version. 00010 00011 This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 00012 without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00013 See the GNU General Public License for more details. 00014 00015 You should have received a copy of the GNU General Public License along with this program; 00016 if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00017 */ 00018 00026 #include <stdio.h> 00027 00028 00030 void score_add_args( 00031 const char* arg1, 00032 /*@null@*/ const char* arg2 00033 ); 00034 00036 void info_db_write( FILE* file ); 00037 00039 void info_db_read( char** line ); 00040 00042 void args_db_read( char** line ); 00043 00045 void message_db_read( char** line ); 00046 00048 void merged_cdd_db_read( char** line ); 00049 00051 void info_dealloc(); 00052 00053 #endif 00054
1.3.4