aboutsummaryrefslogtreecommitdiffstats
path: root/plugin.c
diff options
context:
space:
mode:
authorentropy <entropy@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2006-09-15 19:00:50 +0000
committerentropy <entropy@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2006-09-15 19:00:50 +0000
commit7bbad480a28698f235dce8630b2a37d41abf72f7 (patch)
treec6d7b60837dad001ca5718052f6b129317834e88 /plugin.c
parent5fb6f5e2592635ceb7fb9b0e2771968453234c12 (diff)
downloadlcd4linux-7bbad480a28698f235dce8630b2a37d41abf72f7.tar.gz
[lcd4linux @ 2006-09-15 19:00:50 by entropy]
iconv charset converter plugin git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@717 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'plugin.c')
-rw-r--r--plugin.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/plugin.c b/plugin.c
index 5618f4e..8fa18c9 100644
--- a/plugin.c
+++ b/plugin.c
@@ -1,4 +1,4 @@
-/* $Id: plugin.c,v 1.45 2006/08/13 18:14:03 harbaum Exp $
+/* $Id: plugin.c,v 1.46 2006/09/15 19:00:50 entropy Exp $
*
* plugin handler for the Evaluator
*
@@ -23,6 +23,9 @@
*
*
* $Log: plugin.c,v $
+ * Revision 1.46 2006/09/15 19:00:50 entropy
+ * iconv charset converter plugin
+ *
* Revision 1.45 2006/08/13 18:14:03 harbaum
* Added KVV plugin
*
@@ -318,6 +321,9 @@ int plugin_init(void)
#ifdef PLUGIN_I2C_SENSORS
plugin_init_i2c_sensors();
#endif
+#ifdef PLUGIN_ICONV
+ plugin_init_iconv();
+#endif
#ifdef PLUGIN_IMON
plugin_init_imon();
#endif
@@ -404,6 +410,9 @@ void plugin_exit(void)
#ifdef PLUGIN_I2C_SENSORS
plugin_exit_i2c_sensors();
#endif
+#ifdef PLUGIN_ICONV
+ plugin_exit_iconv();
+#endif
#ifdef PLUGIN_IMON
plugin_exit_imon();
#endif