ocssw  1.0
/disk01/web/ocssw/build/inc/meris/epr_param.h (r8090/r7671)
Go to the documentation of this file.
00001 /*
00002  * $Id: epr_param.h,v 1.1.1.1 2004-10-28 19:22:23 norman Exp $
00003  *
00004  * Copyright (C) 2002 by Brockmann Consult (info@brockmann-consult.de)
00005  *
00006  * This program is free software; you can redistribute it and/or modify it
00007  * under the terms of the GNU General Public License as published by the
00008  * Free Software Foundation. This program is distributed in the hope it will
00009  * be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
00010  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
00011  * See the GNU General Public License for more details.
00012  *
00013  * You should have received a copy of the GNU General Public License
00014  * along with this program; if not, write to the Free Software
00015  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
00016  */
00017 
00018 #ifndef EPR_PARAM_H_INCL
00019 #define EPR_PARAM_H_INCL
00020 
00021 #ifdef __cplusplus
00022 extern "C"
00023 {
00024 #endif
00025 
00026 #include <stdio.h> /* just to get the ANSI-C type FILE */
00027 
00032 struct EPR_ParamElem
00033 {
00037     char* param_name;
00038 
00042     epr_uint param_value;
00043 };
00044 
00045 EPR_SPtrArray* epr_create_param_table(void);
00046 EPR_SParamElem* epr_create_param_elem(const char* param_name, int param_value);
00047 int epr_set_dyn_dddb_params(EPR_SProductId* product_id);
00048 
00049 void epr_free_param_table(EPR_SPtrArray* param_table);
00050 void epr_free_param_elem(EPR_SParamElem* param_elem);
00051 
00052 #ifdef __cplusplus
00053 } /* extern "C" */
00054 #endif
00055 
00056 #endif
00057 /* #ifndef EPR_PARAM_H_INCL */