tests/python/c_code@c_ext/cfile.xml
changeset 862 bb59865db6e6
parent 860 8a51046010d7
child 953 1fb6cf5a4c4d
--- a/tests/python/c_code@c_ext/cfile.xml	Fri Oct 19 12:14:24 2012 +0200
+++ b/tests/python/c_code@c_ext/cfile.xml	Tue Oct 23 00:56:30 2012 +0200
@@ -15,7 +15,7 @@
   return val+1;
 }
 
-int Python_to_C_Call(int toC, int *fromC){
+int Python_to_C_Call(char toC, char *fromC){
   /* Code called by python should never touch to 
      variables modified by PLC thread directly
 
@@ -33,7 +33,7 @@
   return res;
 }
 
-int PLC_C_Call(int fromPLC, int *toPLC){
+int PLC_C_Call(char fromPLC, char *toPLC){
   /* PLC also have to be realy carefull not to 
      conflict with asynchronous python access */
   int res;