aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-contact.h
diff options
context:
space:
mode:
authorDanielle Madeley <danielle.madeley@collabora.co.uk>2011-04-06 14:34:43 +0800
committerDanielle Madeley <danielle.madeley@collabora.co.uk>2011-04-08 08:55:12 +0800
commit065e5efff3e181b8de28d3b0e04e7378d53f2e44 (patch)
tree311dd7d3f0805dbe94ad06c19327c91e0ebfc39b /libempathy/empathy-contact.h
parente84d41efe4b2febb9f3276e54f603550c929a69d (diff)
downloadgsoc2013-empathy-065e5efff3e181b8de28d3b0e04e7378d53f2e44.tar
gsoc2013-empathy-065e5efff3e181b8de28d3b0e04e7378d53f2e44.tar.gz
gsoc2013-empathy-065e5efff3e181b8de28d3b0e04e7378d53f2e44.tar.bz2
gsoc2013-empathy-065e5efff3e181b8de28d3b0e04e7378d53f2e44.tar.lz
gsoc2013-empathy-065e5efff3e181b8de28d3b0e04e7378d53f2e44.tar.xz
gsoc2013-empathy-065e5efff3e181b8de28d3b0e04e7378d53f2e44.tar.zst
gsoc2013-empathy-065e5efff3e181b8de28d3b0e04e7378d53f2e44.zip
Add SMS entry to empathy-individual-menu
Diffstat (limited to 'libempathy/empathy-contact.h')
-rw-r--r--libempathy/empathy-contact.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libempathy/empathy-contact.h b/libempathy/empathy-contact.h
index 005cf1e7a..1eb493e84 100644
--- a/libempathy/empathy-contact.h
+++ b/libempathy/empathy-contact.h
@@ -67,6 +67,7 @@ typedef enum {
EMPATHY_CAPABILITIES_VIDEO = 1 << 1,
EMPATHY_CAPABILITIES_FT = 1 << 2,
EMPATHY_CAPABILITIES_RFB_STREAM_TUBE = 1 << 3,
+ EMPATHY_CAPABILITIES_SMS = 1 << 4,
EMPATHY_CAPABILITIES_UNKNOWN = 1 << 7
} EmpathyCapabilities;
@@ -94,6 +95,7 @@ void empathy_contact_set_is_user (EmpathyContact *contact,
gboolean is_user);
gboolean empathy_contact_is_online (EmpathyContact *contact);
const gchar * empathy_contact_get_status (EmpathyContact *contact);
+gboolean empathy_contact_can_sms (EmpathyContact *contact);
gboolean empathy_contact_can_voip (EmpathyContact *contact);
gboolean empathy_contact_can_voip_audio (EmpathyContact *contact);
gboolean empathy_contact_can_voip_video (EmpathyContact *contact);
@@ -102,6 +104,7 @@ gboolean empathy_contact_can_use_rfb_stream_tube (EmpathyContact *contact);
typedef enum {
EMPATHY_ACTION_CHAT,
+ EMPATHY_ACTION_SMS,
EMPATHY_ACTION_AUDIO_CALL,
EMPATHY_ACTION_VIDEO_CALL,
EMPATHY_ACTION_VIEW_LOGS,