From: <svn...@op...> - 2009-03-26 14:18:29
|
Author: ianmartin Date: Thu Mar 26 15:18:09 2009 New Revision: 5350 URL: http://www.opensync.org/changeset/5350 Log: Updated python wrapper to match api change in r5349 Modified: trunk/wrapper/opensync-plugin.i Modified: trunk/wrapper/opensync-plugin.i ============================================================================== --- trunk/wrapper/opensync-plugin.i Thu Mar 26 14:25:12 2009 (r5349) +++ trunk/wrapper/opensync-plugin.i Thu Mar 26 15:18:09 2009 (r5350) @@ -385,32 +385,32 @@ } */ - void get_changes(void *plugindata, PluginInfo *info, Context *ctx) { - osync_objtype_sink_get_changes(self, plugindata, info, ctx); + void get_changes(PluginInfo *info, Context *ctx) { + osync_objtype_sink_get_changes(self, info, ctx); } - void read_change(void *plugindata, PluginInfo *info, Change *change, Context *ctx) { - osync_objtype_sink_read_change(self, plugindata, info, change, ctx); + void read_change(PluginInfo *info, Change *change, Context *ctx) { + osync_objtype_sink_read_change(self, info, change, ctx); } - void connect(void *plugindata, PluginInfo *info, Context *ctx) { - osync_objtype_sink_connect(self, plugindata, info, ctx); + void connect(PluginInfo *info, Context *ctx) { + osync_objtype_sink_connect(self, info, ctx); } - void disconnect(void *plugindata, PluginInfo *info, Context *ctx) { - osync_objtype_sink_disconnect(self, plugindata, info, ctx); + void disconnect(PluginInfo *info, Context *ctx) { + osync_objtype_sink_disconnect(self, info, ctx); } - void sync_done(void *plugindata, PluginInfo *info, Context *ctx) { - osync_objtype_sink_sync_done(self, plugindata, info, ctx); + void sync_done(PluginInfo *info, Context *ctx) { + osync_objtype_sink_sync_done(self, info, ctx); } - void commit_change(void *plugindata, PluginInfo *info, Change *change, Context *ctx) { - osync_objtype_sink_commit_change(self, plugindata, info, change, ctx); + void commit_change(PluginInfo *info, Change *change, Context *ctx) { + osync_objtype_sink_commit_change(self, info, change, ctx); } - void committed_all(void *plugindata, PluginInfo *info, Context *ctx) { - osync_objtype_sink_committed_all(self, plugindata, info, ctx); + void committed_all(PluginInfo *info, Context *ctx) { + osync_objtype_sink_committed_all(self, info, ctx); } bool is_enabled() { |