Take the 2008 Git User's Survey and help out! [ hide ]

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)
Fri Apr 18 02:21:03 -0700 2008
commit  455bcf01d7cb8a5c84630024c693349a9c06dafe
tree    2eca12004870287376467b447dbfefccf872cc47
parent  72ff55611b6b5df82e6d7a270c279644c7ba252b
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__ */