blob: 9c756745a209200faf904eca9b6bb834fff2aa01 [file] [log] [blame]
Adrien Béraud04d822c2015-04-02 17:44:36 -04001/*
Adrien Béraudec528bb2016-01-14 16:52:51 -05002 * Copyright (C) 2004-2016 Savoir-faire Linux Inc.
3 *
Adrien Béraud04d822c2015-04-02 17:44:36 -04004 * Author: Emeric Vigier <emeric.vigier@savoirfairelinux.com>
Adrien Béraudec528bb2016-01-14 16:52:51 -05005 *
Adrien Béraud04d822c2015-04-02 17:44:36 -04006 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Adrien Béraud04d822c2015-04-02 17:44:36 -040019 */
20
21/* %nodefaultctor ManagerImpl;
22%nodefaultdtor ManagerImpl; */
23%header %{
24#include "dring/dring.h"
25%}
26
Adrien Béraud7f97ca92015-06-07 15:36:06 -040027namespace DRing {
Adrien Béraud04d822c2015-04-02 17:44:36 -040028
29/**
30 * Finalizes libsflphone, freeing any resource allocated by the library.
31 */
Adrien Béraud7f97ca92015-06-07 15:36:06 -040032void fini(void);
Adrien Béraud04d822c2015-04-02 17:44:36 -040033
34/**
35 * Poll for SIP/IAX events
36 */
Adrien Béraud7f97ca92015-06-07 15:36:06 -040037void pollEvents(void);
38
39}