public
Description: A Clutter-based Twitter client
Homepage: http://live.gnome.org/Tweet
Clone URL: git://github.com/ebassi/tweet.git
Emmanuele Bassi (author)
Fri Apr 11 06:52:37 -0700 2008
commit  c949bd4c475f05d894e6f19a3f85cca998dac8d7
tree    09674f4951e70792289aa3d0b71c1521dcdfab81
parent  42340cc19f0a0cf5f4712768b49991c53c9cdb3b
tweet / twitter-glib / twitter-private.h
100644 18 lines (11 sloc) 0.387 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __TWITTER_PRIVATE_H__
#define __TWITTER_PRIVATE_H__
 
#include <json-glib/json-glib.h>
#include "twitter-status.h"
#include "twitter-user.h"
 
G_BEGIN_DECLS
 
#define I_(str) (g_intern_static_string ((str)))
 
TwitterStatus *twitter_status_new_from_node (JsonNode *node);
TwitterUser *twitter_user_new_from_node (JsonNode *node);
 
G_END_DECLS
 
#endif /* __TWITTER_PRIVATE_H__ */