summaryrefslogtreecommitdiff
path: root/tools.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-11-05 11:21:38 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2005-11-05 11:21:38 +0100
commit9607fd33a061530b3e26e2ffae14e87548b016ba (patch)
treea5a4ef45553f9c87e4dba63be285823b819ce009 /tools.h
parent92af12daac8a33db8be0b33335bd79330ced9463 (diff)
downloadvdr-9607fd33a061530b3e26e2ffae14e87548b016ba.tar.gz
vdr-9607fd33a061530b3e26e2ffae14e87548b016ba.tar.bz2
cSVDRP now dynamically allocates its command buffer
Diffstat (limited to 'tools.h')
-rw-r--r--tools.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools.h b/tools.h
index cc4c9e30..c344fce2 100644
--- a/tools.h
+++ b/tools.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: tools.h 1.82 2005/11/04 17:05:35 kls Exp $
+ * $Id: tools.h 1.83 2005/11/05 10:54:39 kls Exp $
*/
#ifndef __TOOLS_H
@@ -38,8 +38,6 @@ extern int SysLogLevel;
#define KILOBYTE(n) ((n) * 1024)
#define MEGABYTE(n) ((n) * 1024 * 1024)
-#define MAXPARSEBUFFER KILOBYTE(10)
-
#define MALLOC(type, size) (type *)malloc(sizeof(type) * (size))
#define DELETENULL(p) (delete (p), p = NULL)