diff -ru vdr-1.3.27-vanilla/config.c vdr-1.3.27-prepared/config.c
--- vdr-1.3.27-vanilla/config.c	2005-07-01 12:51:34.000000000 +0200
+++ vdr-1.3.27-prepared/config.c	2005-07-01 21:52:24.000000000 +0200
@@ -15,6 +15,17 @@
 #include "plugin.h"
 #include "recording.h"
 
+
+
+/*
+ * Place for Plugins to add code in global space - Begin
+ */
+/*
+ * Place for Plugins to add code in global space - End
+ */
+
+
+
 // IMPORTANT NOTE: in the 'sscanf()' calls there is a blank after the '%d'
 // format characters in order to allow any number of blanks after a numeric
 // value!
@@ -302,6 +313,18 @@
   CurrentChannel = -1;
   CurrentVolume = MAXVOLUME;
   CurrentDolby = 0;
+
+
+
+/*
+ * Place for Plugins to initialize variables - Begin
+ */
+/*
+ * Place for Plugins to initialize variables - End
+ */
+
+
+
 }
 
 cSetup& cSetup::operator= (const cSetup &s)
@@ -460,6 +483,18 @@
   else if (!strcasecmp(Name, "CurrentChannel"))      CurrentChannel     = atoi(Value);
   else if (!strcasecmp(Name, "CurrentVolume"))       CurrentVolume      = atoi(Value);
   else if (!strcasecmp(Name, "CurrentDolby"))        CurrentDolby       = atoi(Value);
+
+
+
+/*
+ * Place for Plugins to parse parameters into variables - Begin
+ */
+/*
+ * Place for Plugins to parse parameters into variables - End
+ */
+
+
+
   else
      return false;
   return true;
@@ -525,6 +560,17 @@
   Store("CurrentVolume",      CurrentVolume);
   Store("CurrentDolby",       CurrentDolby);
 
+
+
+/*
+ * Place for Plugins to store variables - Begin
+ */
+/*
+ * Place for Plugins to store variables - End
+ */
+
+
+
   Sort();
 
   if (cConfig<cSetupLine>::Save()) {
diff -ru vdr-1.3.27-vanilla/config.h vdr-1.3.27-prepared/config.h
--- vdr-1.3.27-vanilla/config.h	2005-07-01 12:51:34.000000000 +0200
+++ vdr-1.3.27-prepared/config.h	2005-07-01 21:51:54.000000000 +0200
@@ -256,6 +256,18 @@
   int CurrentChannel;
   int CurrentVolume;
   int CurrentDolby;
+
+
+
+/*
+ * Place for patches to insert functions/members to cSetup - Begin
+ */
+/*
+ * Place for patches to insert functions/members to cSetup - End
+ */
+
+
+
   int __EndData__;
   cSetup(void);
   cSetup& operator= (const cSetup &s);
diff -ru vdr-1.3.27-vanilla/i18n.c vdr-1.3.27-prepared/i18n.c
--- vdr-1.3.27-vanilla/i18n.c	2005-07-01 12:51:24.000000000 +0200
+++ vdr-1.3.27-prepared/i18n.c	2005-07-01 21:53:06.000000000 +0200
@@ -5388,6 +5388,18 @@
     "",// TODO
     "",// TODO
   },
+
+
+
+/*
+ * Place for Plugins to add i18n - Begin
+ */
+/*
+ * Place for Plugins to add i18n - End
+ */
+
+
+
   { NULL }
   };
 
