blob: f2771ec2d75dc8388de1417e2e1907b24340a672 [file] [log] [blame]
Nanang Izzuddindb59d9e2008-05-30 11:35:46 +00001/* $Id: ua.cpp 1793 2008-02-14 13:39:24Z bennylp $ */
2/*
3 * Copyright (C) 2003-2007 Benny Prijono <benny@prijono.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20#ifndef __SYMBIAN_UA_H__
21#define __SYMBIAN_UA_H__
22
Nanang Izzuddinc8003c32008-05-30 12:47:58 +000023typedef unsigned short int wchar_t;
24
Nanang Izzuddindb59d9e2008-05-30 11:35:46 +000025typedef struct
26{
27 void (*on_info)(const wchar_t* buf);
28 void (*on_incoming_call)(const wchar_t* caller_disp, const wchar_t* caller_uri);
29 void (*on_call_end)(const wchar_t* reason);
30 void (*on_reg_state)(bool success);
31 void (*on_unreg_state)(bool success);
32} symbian_ua_info_cb_t;
33
34int symbian_ua_init();
35int symbian_ua_destroy();
36
37void symbian_ua_set_info_callback(const symbian_ua_info_cb_t *cb);
38
39int symbian_ua_set_account(const char *domain, const char *username,
40 const char *password,
41 bool use_srtp, bool use_ice);
42
43bool symbian_ua_anycall();
44int symbian_ua_makecall(const char* dest_url);
45int symbian_ua_endcall();
46int symbian_ua_answercall();
47
48#endif
49