diff options
| author | Damien Laniel <dlaniel@entrouvert.com> | 2007-06-08 13:06:43 +0000 |
|---|---|---|
| committer | Damien Laniel <dlaniel@entrouvert.com> | 2007-06-08 13:06:43 +0000 |
| commit | bb00c74ce3d6f2a28a73df0520b63a0da3c4cc5a (patch) | |
| tree | b689273d8d5f1de958767d1cf1e3de35671a03d3 | |
| parent | 6bd1d65a1992c822a8fa37f12740f3d4d2176b15 (diff) | |
| download | lasso-bb00c74ce3d6f2a28a73df0520b63a0da3c4cc5a.tar.gz lasso-bb00c74ce3d6f2a28a73df0520b63a0da3c4cc5a.tar.xz lasso-bb00c74ce3d6f2a28a73df0520b63a0da3c4cc5a.zip | |
removed useless arguments for lasso_idwsf2_discovery_init_metadata_association_add
| -rw-r--r-- | lasso/id-wsf-2.0/discovery.c | 2 | ||||
| -rw-r--r-- | lasso/id-wsf-2.0/discovery.h | 2 | ||||
| -rw-r--r-- | swig/Lasso-wsf2.i | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lasso/id-wsf-2.0/discovery.c b/lasso/id-wsf-2.0/discovery.c index 72e018c8..47bd4591 100644 --- a/lasso/id-wsf-2.0/discovery.c +++ b/lasso/id-wsf-2.0/discovery.c @@ -249,7 +249,7 @@ lasso_idwsf2_discovery_process_metadata_register_response_msg(LassoIdWsf2Discove gint lasso_idwsf2_discovery_init_metadata_association_add(LassoIdWsf2Discovery *discovery, - const gchar *svcMDID, const gchar *disco_provider_id) + const gchar *svcMDID) { LassoWsf2Profile *profile = LASSO_WSF2_PROFILE(discovery); LassoSession *session = profile->session; diff --git a/lasso/id-wsf-2.0/discovery.h b/lasso/id-wsf-2.0/discovery.h index d6e012b6..591c2bbc 100644 --- a/lasso/id-wsf-2.0/discovery.h +++ b/lasso/id-wsf-2.0/discovery.h @@ -87,7 +87,7 @@ LASSO_EXPORT gint lasso_idwsf2_discovery_process_metadata_register_response_msg( LassoIdWsf2Discovery *discovery, const gchar *message); LASSO_EXPORT gint lasso_idwsf2_discovery_init_metadata_association_add( - LassoIdWsf2Discovery *discovery, const gchar *svcMDID, const gchar *disco_provider_id); + LassoIdWsf2Discovery *discovery, const gchar *svcMDID); LASSO_EXPORT gint lasso_idwsf2_discovery_process_metadata_association_add_msg( LassoIdWsf2Discovery *discovery, const gchar *message); diff --git a/swig/Lasso-wsf2.i b/swig/Lasso-wsf2.i index fc6f8062..2d543602 100644 --- a/swig/Lasso-wsf2.i +++ b/swig/Lasso-wsf2.i @@ -149,7 +149,7 @@ typedef struct { END_THROW_ERROR() THROW_ERROR() - int initMetadataAssociationAdd(const char *svcMDID, const char *disco_provider_id); + int initMetadataAssociationAdd(const char *svcMDID); END_THROW_ERROR() THROW_ERROR() |
