~ubuntu-branches/ubuntu/wily/sflphone/wily

« back to all changes in this revision

Viewing changes to daemon/src/client/android/jni_callbacks.h

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2014-01-28 18:23:36 UTC
  • mfrom: (1.1.11)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: package-import@ubuntu.com-20140128182336-3xenud1kbnwmf3mz
* New upstream release 
  - Fixes "New Upstream Release" (Closes: #735846)
  - Fixes "Ringtone does not stop" (Closes: #727164)
  - Fixes "[sflphone-kde] crash on startup" (Closes: #718178)
  - Fixes "sflphone GUI crashes when call is hung up" (Closes: #736583)
* Build-Depends: ensure GnuTLS 2.6
  - libucommon-dev (>= 6.0.7-1.1), libccrtp-dev (>= 2.0.6-3)
  - Fixes "FTBFS Build-Depends libgnutls{26,28}-dev" (Closes: #722040)
* Fix "boost 1.49 is going away" unversioned Build-Depends: (Closes: #736746)
* Add Build-Depends: libsndfile-dev, nepomuk-core-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
 
 
3
 
 
4
 
 
5
extern struct callmanager_callback wrapper_callback_struct;
 
6
void on_new_call_created_wrapper (const std::string& accountID,
 
7
                                         const std::string& callID,
 
8
                                         const std::string& to);
 
9
void on_call_state_changed_wrapper(const std::string& callID,
 
10
                                          const std::string& to);
 
11
void on_incoming_call_wrapper (const std::string& accountID,
 
12
                                      const std::string& callID,
 
13
                                      const std::string& from);
 
14
void on_transfer_state_changed_wrapper (const std::string& result);
 
15
 
 
16
void on_conference_created_wrapper (const std::string& confID);
 
17
void on_conference_removed_wrapper (const std::string& confID);
 
18
void on_conference_state_changed_wrapper(const std::string& confID,const std::string& state);
 
19
void on_incoming_message_wrapper(const std::string& ID, const std::string& from, const std::string& msg);
 
20
void on_newPresSubClientNotification_wrapper(const std::string& uri, const std::string& basic, const std::string& note);
 
21
void on_newPresSubServerRequest_wrapper(const std::string& remote);
 
22
 
 
23
extern struct configurationmanager_callback wrapper_configurationcallback_struct;
 
24
extern void on_accounts_changed_wrapper ();
 
25
extern void on_account_state_changed_wrapper (const std::string& accoundID, int const& state);
 
26
extern void on_account_state_changed_with_code_wrapper (const std::string& accoundID, const std::string& state, const int32_t& code);
 
27
 
 
28
void on_record_playback_filepath_wrapper(const std::string& id, const std::string& filename);