ofono/drivers/common/call_list.h

52 lines
1.6 KiB
C

/*
*
* oFono - Open Source Telephony
*
* Copyright (C) 2017,2019 Alexander Couzens <lynxis@fe80.eu>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifndef __OFONO_DRIVER_COMMON_CALL_LIST
#define __OFONO_DRIVER_COMMON_CALL_LIST
#include <glib.h>
struct ofono_voicecall;
struct ofono_phone_number;
gint ofono_call_compare(gconstpointer a, gconstpointer b);
gint ofono_call_compare_by_status(gconstpointer a, gconstpointer b);
gint ofono_call_compare_by_id(gconstpointer a, gconstpointer b);
/*
* Can be called by the driver in the dialing callback,
* when the new call id already known
*/
void ofono_call_list_dial_callback(struct ofono_voicecall *vc,
GSList **call_list,
const struct ofono_phone_number *ph,
int call_id);
/*
* Called with a list of known calls e.g. clcc.
* Call list will take ownership of all ofono call within the calls.
*/
void ofono_call_list_notify(struct ofono_voicecall *vc,
GSList **call_list,
GSList *calls);
#endif /* __OFONO_DRIVER_COMMON_CALL_LIST */