public
Description: A Clutter-based Twitter client
Homepage: http://live.gnome.org/Tweet
Clone URL: git://github.com/ebassi/tweet.git
Search Repo:
Emmanuele Bassi (author)
Sat Apr 19 07:29:41 -0700 2008
commit  a643edaaa7ba328cf4f24356dbeb5c2faa5837e3
tree    a002d1ab1d3439fcbbd514ce3b803f4d8e216866
parent  455bcf01d7cb8a5c84630024c693349a9c06dafe
tweet / twitter-glib / twitter-private.h
100644 17 lines (11 sloc) 0.387 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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__ */