diff --git a/include/linphone/call.h b/include/linphone/call.h index 1f494e0fb..453ea4411 100644 --- a/include/linphone/call.h +++ b/include/linphone/call.h @@ -847,7 +847,6 @@ LINPHONE_PUBLIC void linphone_call_remove_callbacks(LinphoneCall *call, Linphone * This is meant only to be called from a callback to be able to get the user_data associated with the LinphoneCallCbs that is calling the callback. * @param[in] call LinphoneCall object * @return The LinphoneCallCbs that has called the last callback - * @donotwrap */ LINPHONE_PUBLIC LinphoneCallCbs *linphone_call_get_current_callbacks(const LinphoneCall *call); diff --git a/include/linphone/core.h b/include/linphone/core.h index 39256ef5c..3669b438f 100644 --- a/include/linphone/core.h +++ b/include/linphone/core.h @@ -268,7 +268,6 @@ LINPHONE_PUBLIC void *linphone_core_cbs_get_user_data(const LinphoneCoreCbs *cbs * This is meant only to be called from a callback to be able to get the user_data associated with the #LinphoneCoreCbs that is calling the callback. * @param lc the linphonecore * @return the #LinphoneCoreCbs that has called the last callback - * @donotwrap */ LINPHONE_PUBLIC LinphoneCoreCbs *linphone_core_get_current_callbacks(const LinphoneCore *lc); diff --git a/tools/python/apixml2python.py b/tools/python/apixml2python.py index 99104cf71..ca8fe7961 100755 --- a/tools/python/apixml2python.py +++ b/tools/python/apixml2python.py @@ -27,6 +27,7 @@ from apixml2python.linphone import LinphoneModule, HandWrittenClassMethod, HandW blacklisted_classes = [ + 'LinphoneIntRange', 'LinphoneTunnel', 'LinphoneTunnelConfig' ] diff --git a/wrappers/cpp/abstractapi.py b/wrappers/cpp/abstractapi.py index d7ac56f29..34537e345 100644 --- a/wrappers/cpp/abstractapi.py +++ b/wrappers/cpp/abstractapi.py @@ -434,7 +434,6 @@ class CParser(object): self.regexFixedSizeInteger = '^(u?)int(\d?\d)_t$' self.methodBl = ['ref', 'unref', 'new', 'destroy', 'getCurrentCallbacks', 'setUserData', 'getUserData'] self.functionBl = [ - 'linphone_core_get_current_callbacks', 'linphone_factory_create_core', # manualy wrapped 'linphone_factory_create_core_with_config', # manualy wrapped 'linphone_vcard_get_belcard'] # manualy wrapped