Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : proto

Dir     : e17/proto/e_dbus/src/bin


Modified Files:
        hal.c 


Log Message:
Declare functions.
Fix callbacks.

===================================================================
RCS file: /cvs/e/e17/proto/e_dbus/src/bin/hal.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- hal.c       24 Mar 2007 02:11:09 -0000      1.8
+++ hal.c       3 Apr 2007 19:29:07 -0000       1.9
@@ -525,17 +525,17 @@
 }
 
 static void
-cb_volume_unmounted(void *data, void *reply_data)
+cb_volume_unmounted(void *user_data, void *method_return, DBusError *error)
 {
-  Volume *vol = data;
+  Volume *vol = user_data;
   vol->mounted = 0;
   printf("Volume unmounted reply: %s\n", vol->udi);
 }
 
 static void
-cb_volume_mounted(void *data, void *reply_data)
+cb_volume_mounted(void *user_data, void *method_return, DBusError *error)
 {
-  Volume *vol = data;
+  Volume *vol = user_data;
   vol->mounted = 1;
   printf("Volume mounted reply: %s\n", vol->udi);
 }



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to