summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2008-11-05 19:43:50 +0100
committerDavid Sommerseth <dazo@users.sourceforge.net>2008-11-05 19:43:50 +0100
commite6b8cb93fad578321eb3d33dd14490b18069886f (patch)
tree9d9dc9f2d56aa7dc910eeafff94fad472f0129b6 /common
parent4764552cbe9747c1b95fad673f943e2e841a176e (diff)
downloadeurephia-e6b8cb93fad578321eb3d33dd14490b18069886f.tar.gz
eurephia-e6b8cb93fad578321eb3d33dd14490b18069886f.tar.xz
eurephia-e6b8cb93fad578321eb3d33dd14490b18069886f.zip
Code cleanup: Splitted all structures defined in eurephia_struct.h into separate include files
Diffstat (limited to 'common')
-rw-r--r--common/eurephia_values_struct.h32
1 files changed, 32 insertions, 0 deletions
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 <dazo@users.sourceforge.net>
+ *
+ * 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_ */