summaryrefslogtreecommitdiff
path: root/global.h
diff options
context:
space:
mode:
authormrwastl <mrwastl@users.sourceforge.net>2010-05-04 21:03:19 +0200
committermrwastl <mrwastl@users.sourceforge.net>2010-05-04 21:03:19 +0200
commit8a4168bd0d2e468604755398f18be1fba9046aa0 (patch)
tree56558e0517e3b63483a2813146563eaf0371c666 /global.h
parent75ebec3efc4879fc8bee8a3ecfe71809d9fccefd (diff)
downloadvdr-plugin-graphlcd-8a4168bd0d2e468604755398f18be1fba9046aa0.tar.gz
vdr-plugin-graphlcd-8a4168bd0d2e468604755398f18be1fba9046aa0.tar.bz2
initial git upload, based on graphlcd-0.2.0-pre2
Diffstat (limited to 'global.h')
-rw-r--r--global.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/global.h b/global.h
index a810180..a2f031d 100644
--- a/global.h
+++ b/global.h
@@ -13,17 +13,8 @@
#ifndef _GRAPHLCD_GLOBAL_H_
#define _GRAPHLCD_GLOBAL_H_
-
#include <stdlib.h>
-#include <glcddrivers/driver.h>
-
-
-#define PLUGIN_NAME "graphlcd"
-#define SPACEWIDTH 2
-
-#define FREENULL(p) (free (p), p = NULL)
-
template<class T> inline void clip(T & value, T min, T max)
{
if (value < min) value = min;