# HG changeset patch
# User greg
# Date 1210080138 -7200
# Node ID 7818ec7b5c531dc9bdedd36e84de870341c6da91
# Parent  fd4a5c0cca2d187e30306735156ae284054f76df
add Exit function and StopTimerLoop arg to match with recent changes in CanFestival

diff -r fd4a5c0cca2d -r 7818ec7b5c53 plugins/canfestival/cf_runtime.c
--- a/plugins/canfestival/cf_runtime.c	Wed Apr 16 14:27:12 2008 +0200
+++ b/plugins/canfestival/cf_runtime.c	Tue May 06 15:22:18 2008 +0200
@@ -46,6 +46,10 @@
     %(nodes_init)s
 }
 
+void Exit(CO_Data* d, UNS32 id)
+{
+}
+
 #define NODE_CLOSE(nodename) \
     if(init_level-- > 0)\
     {\
@@ -61,7 +65,7 @@
     
     // Stop timer thread
     if(init_level-- > 0)
-        StopTimerLoop();
+        StopTimerLoop(&Exit);
 
 }