diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-04-19 23:28:52 +0800 |
---|---|---|
committer | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2010-04-25 02:44:09 +0800 |
commit | cdd773bdb91f860c502864bf9d40df45f935aa7c (patch) | |
tree | 38291c1f334f77e11508a74f42421186da64233e /libempathy/empathy-dispatch-operation.h | |
parent | 221c1186f4b34b585767ae5b6f8e705410bf60dc (diff) | |
download | gsoc2013-empathy-cdd773bdb91f860c502864bf9d40df45f935aa7c.tar gsoc2013-empathy-cdd773bdb91f860c502864bf9d40df45f935aa7c.tar.gz gsoc2013-empathy-cdd773bdb91f860c502864bf9d40df45f935aa7c.tar.bz2 gsoc2013-empathy-cdd773bdb91f860c502864bf9d40df45f935aa7c.tar.lz gsoc2013-empathy-cdd773bdb91f860c502864bf9d40df45f935aa7c.tar.xz gsoc2013-empathy-cdd773bdb91f860c502864bf9d40df45f935aa7c.tar.zst gsoc2013-empathy-cdd773bdb91f860c502864bf9d40df45f935aa7c.zip |
dispatch-operation: add user-action-time property
Diffstat (limited to 'libempathy/empathy-dispatch-operation.h')
-rw-r--r-- | libempathy/empathy-dispatch-operation.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/libempathy/empathy-dispatch-operation.h b/libempathy/empathy-dispatch-operation.h index 148adec90..3e7bc92c5 100644 --- a/libempathy/empathy-dispatch-operation.h +++ b/libempathy/empathy-dispatch-operation.h @@ -76,11 +76,14 @@ GType empathy_dispatch_operation_get_type (void); EmpathyDispatchOperation *empathy_dispatch_operation_new ( TpConnection *connection, TpChannel *channel, EmpathyContact *contact, - gboolean incoming); + gboolean incoming, + gint64 user_action_time); EmpathyDispatchOperation *empathy_dispatch_operation_new_with_wrapper ( TpConnection *connection, TpChannel *channel, EmpathyContact *contact, - gboolean incoming, GObject *channel_wrapper); + gboolean incoming, + gint64 user_action_time, + GObject *channel_wrapper); /* Start the dispatching process, goes to the APPROVING state for incoming * channels and DISPATCHING for outgoing ones */ @@ -115,6 +118,9 @@ EmpathyDispatchOperationState empathy_dispatch_operation_get_status ( gboolean empathy_dispatch_operation_is_incoming ( EmpathyDispatchOperation *operation); +gint64 empathy_dispatch_operation_get_user_action_time ( + EmpathyDispatchOperation *self); + G_END_DECLS #endif /* #ifndef __EMPATHY_DISPATCH_OPERATION_H__*/ |