From e6b8cb93fad578321eb3d33dd14490b18069886f Mon Sep 17 00:00:00 2001 From: David Sommerseth Date: Wed, 5 Nov 2008 19:43:50 +0100 Subject: Code cleanup: Splitted all structures defined in eurephia_struct.h into separate include files --- common/eurephia_values_struct.h | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 common/eurephia_values_struct.h (limited to 'common/eurephia_values_struct.h') diff --git a/common/eurephia_values_struct.h b/common/eurephia_values_struct.h new file mode 100644 index 0000000..48512c3 --- /dev/null +++ b/common/eurephia_values_struct.h @@ -0,0 +1,32 @@ +/* eurephia_values.h -- eurephiaVALUES struct typedef + * + * GPLv2 - Copyright (C) 2008 David Sommerseth + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; version 2 + * of the License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +#ifndef EUREPHIA_VALUES_STRUCT_H_ +# define EUREPHIA_VALUES_STRUCT_H_ + +typedef struct __eurephiaVALUES { + unsigned int evgid; + unsigned int evid; + char *key; + char *val; + struct __eurephiaVALUES *next; +} eurephiaVALUES; + +#endif /* !EUREPHIA_VALUES_STRUCT_H_ */ -- cgit