From 0e9b2a45025e531c949ec42efe8a3ef82ac27ce7 Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Tue, 30 Sep 2014 17:05:00 +0200 Subject: [PATCH] Blacklist linphone_core_add_listener() and linphone_core_remove_listener() in the Python module. --- tools/python/apixml2python.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/python/apixml2python.py b/tools/python/apixml2python.py index 73fe2c257..b8f1bff2f 100755 --- a/tools/python/apixml2python.py +++ b/tools/python/apixml2python.py @@ -46,6 +46,7 @@ blacklisted_functions = [ 'linphone_chat_message_start_file_download', # to be handwritten because of callback 'linphone_chat_message_state_to_string', # There is no use to wrap this function 'linphone_chat_room_create_file_transfer_message', # missing LinphoneContent + 'linphone_core_add_listener', 'linphone_core_can_we_add_call', # private function 'linphone_core_get_audio_port_range', # to be handwritten because of result via arguments 'linphone_core_get_sip_transports', # missing LCSipTransports @@ -54,6 +55,7 @@ blacklisted_functions = [ 'linphone_core_get_video_policy', # missing LinphoneVideoPolicy 'linphone_core_get_video_port_range', # to be handwritten because of result via arguments 'linphone_core_publish', # missing LinphoneContent + 'linphone_core_remove_listener', 'linphone_core_serialize_logs', # There is no use to wrap this function 'linphone_core_set_log_file', # There is no use to wrap this function 'linphone_core_set_log_handler', # Hand-written but put directly in the linphone module