~ubuntu-branches/ubuntu/quantal/linphone/quantal

« back to all changes in this revision

Viewing changes to coreapi/exevents.h

  • Committer: Bazaar Package Importer
  • Author(s): Samuel Mimram
  • Date: 2006-11-15 10:34:50 UTC
  • mfrom: (1.2.1 upstream) (2.1.8 feisty)
  • Revision ID: james.westby@ubuntu.com-20061115103450-qgafwcks2lkhctlj
* New upstream release.
* Enable video support.
* Fix mismatched #endif in mscommon.h, closes: #398307.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
linphone
 
3
Copyright (C) 2000  Simon MORLAT (simon.morlat@free.fr)
 
4
 
 
5
This program is free software; you can redistribute it and/or
 
6
modify it under the terms of the GNU General Public License
 
7
as published by the Free Software Foundation; either version 2
 
8
of the License, or (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 OSIPUACB_H
 
21
#define OSIPUACB_H
 
22
#include <eXosip.h>
 
23
#include "sdphandler.h"
 
24
 
 
25
 
 
26
void linphone_core_process_event(LinphoneCore *lc, eXosip_event_t *ev);
 
27
 
 
28
/* these are the SdpHandler callbacks: we are called in to be aware of the content
 
29
of the SDP messages exchanged */
 
30
 
 
31
int linphone_set_audio_offer(sdp_context_t *ctx);
 
32
int linphone_set_video_offer(sdp_context_t *ctx);
 
33
int linphone_accept_audio_offer(sdp_context_t *ctx,sdp_payload_t *payload);
 
34
int linphone_accept_video_offer(sdp_context_t *ctx,sdp_payload_t *payload);
 
35
int linphone_read_audio_answer(sdp_context_t *ctx,sdp_payload_t *payload);
 
36
int linphone_read_video_answer(sdp_context_t *ctx,sdp_payload_t *payload);
 
37
 
 
38
void linphone_core_text_received(LinphoneCore *lc, const char *from, const char *msg);
 
39
 
 
40
#endif