00001 /*************************************************************************** 00002 keypvalplist.h 00003 ------------------- 00004 begin : Sun Nov 24 2001 00005 copyright : (C) 2001-2002 by Christian Hoenig & Gunter Ohrner 00006 email : pdepp@CustomCDROM.de 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00024 /* 00025 Define all macros unconditionally. That does no harm but helps 00026 "--enable-final" builds where all c-files are concatenated together 00027 */ 00028 00029 #undef MlCargo 00030 00031 #define MlCargo struct KeyValuePair 00032 00033 #undef ML_LIST_NAME 00034 00035 #define ML_LIST_NAME KeypValpList 00036 00037 #undef ML_FUNC_PFX 00038 00039 #define ML_FUNC_PFX kpvpList 00040 00041 #ifndef KEYPVALPLIST_H_FLAG 00042 #define KEYPVALPLIST_H_FLAG 00043 00044 struct KeyValuePair 00045 { 00046 char* key; 00047 char* val; 00048 }; 00049 00050 #include "mlist_tmpl_h.inc" 00051 00052 #endif