~ubuntu-branches/ubuntu/utopic/gossip/utopic

« back to all changes in this revision

Viewing changes to libgossip/gossip-message.h

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2007-10-19 13:02:15 UTC
  • mfrom: (1.1.20 upstream)
  • Revision ID: james.westby@ubuntu.com-20071019130215-k2c45f460ssaft0r
Tags: 1:0.27-4
* Upload to unstable again.
* New patch, 00_debian-branding.patch, to get the distribution into the
  vcard.
* New patch, 01_disable-smooth-scrolling.patch, to disable smooth scrolling
  completely; GNOME #471316.
* New patch, 02_german-translation.patch, to fix german translations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
GossipTime        gossip_message_get_timestamp           (GossipMessage        *message);
81
81
void              gossip_message_set_timestamp           (GossipMessage        *message,
82
82
                                                          GossipTime            timestamp);
 
83
GDate *           gossip_message_get_date_and_time       (GossipMessage        *message,
 
84
                                                          time_t               *timestamp);
83
85
 
84
86
GossipChatroomInvite *
85
87
                  gossip_message_get_invite              (GossipMessage        *message);
87
89
                                                          GossipChatroomInvite *invite);
88
90
void              gossip_message_request_composing       (GossipMessage        *message);
89
91
gboolean          gossip_message_is_requesting_composing (GossipMessage        *message);
 
92
gboolean          gossip_message_is_action               (GossipMessage        *message);
 
93
gchar *           gossip_message_get_action_string       (GossipMessage        *message);
90
94
 
91
95
G_END_DECLS
92
96