targets/plc_common_main.c
changeset 366 cd90e4c10261
parent 332 4f0e1d66bba5
child 386 2932b0dd437c
--- a/targets/plc_common_main.c	Wed Jul 29 10:49:31 2009 +0200
+++ b/targets/plc_common_main.c	Wed Jul 29 15:17:10 2009 +0200
@@ -18,11 +18,6 @@
 /*void __retrieve_debug(void);*/
 void __publish_debug(void);
 
-void __init_python(void);
-void __cleanup_python(void);
-void __retrieve_python(void);
-void __publish_python(void);
-
 /*
  *  Variables used by generated C softPLC and plugins
  **/
@@ -47,14 +42,10 @@
 
     %(retrieve_calls)s
 
-    __retrieve_python();
-
     /*__retrieve_debug();*/
 
     config_run__(__tick);
 
-    __publish_python();
-
     __publish_debug();
 
     %(publish_calls)s
@@ -71,7 +62,6 @@
     setlocale(LC_NUMERIC, "C");
     config_init__();
     __init_debug();
-    __init_python();
     %(init_calls)s
     return 0;
 }
@@ -82,7 +72,6 @@
 {
     %(cleanup_calls)s
     __cleanup_debug();
-    __cleanup_python();
 }