/* vcard_stubs.c Copyright (C) 2015 Belledonne Communications SARL This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "vcard.h" struct _LinphoneVcard { void *dummy; }; LinphoneVcard* linphone_vcard_new(void) { return NULL; } void linphone_vcard_free(LinphoneVcard *vCard) { } MSList* linphone_vcard_list_from_vcard4_file(const char *filename) { return NULL; } MSList* linphone_vcard_list_from_vcard4_buffer(const char *buffer) { return NULL; } LinphoneVcard* linphone_vcard_new_from_vcard4_buffer(const char *buffer) { return NULL; } const char * linphone_vcard_as_vcard4_string(LinphoneVcard *vCard) { return NULL; } void linphone_vcard_set_full_name(LinphoneVcard *vCard, const char *name) { } const char* linphone_vcard_get_full_name(const LinphoneVcard *vCard) { return NULL; } void linphone_vcard_add_sip_address(LinphoneVcard *vCard, const char *sip_address) { } void linphone_vcard_remove_sip_address(LinphoneVcard *vCard, const char *sip_address) { } void linphone_vcard_edit_main_sip_address(LinphoneVcard *vCard, const char *sip_address) { } MSList* linphone_vcard_get_sip_addresses(const LinphoneVcard *vCard) { return NULL; } void linphone_vcard_add_phone_number(LinphoneVcard *vCard, const char *phone) { } void linphone_vcard_remove_phone_number(LinphoneVcard *vCard, const char *phone) { } MSList* linphone_vcard_get_phone_numbers(const LinphoneVcard *vCard) { return NULL; } void linphone_vcard_set_organization(LinphoneVcard *vCard, const char *organization) { } const char* linphone_vcard_get_organization(const LinphoneVcard *vCard) { return NULL; } bool_t linphone_vcard_generate_unique_id(LinphoneVcard *vCard) { return FALSE; } void linphone_vcard_set_uid(LinphoneVcard *vCard, const char *uid) { } const char* linphone_vcard_get_uid(const LinphoneVcard *vCard) { return NULL; } void linphone_vcard_set_etag(LinphoneVcard *vCard, const char * etag) { } const char* linphone_vcard_get_etag(const LinphoneVcard *vCard) { return NULL; } void linphone_vcard_set_url(LinphoneVcard *vCard, const char * url) { } const char* linphone_vcard_get_url(const LinphoneVcard *vCard) { return NULL; } void linphone_vcard_compute_md5_hash(LinphoneVcard *vCard) { } bool_t linphone_vcard_compare_md5_hash(LinphoneVcard *vCard) { return FALSE; }