we don't really need to build src/liblj/ as library; and we don't need to write each...
[k8lowj.git] / src / liblj / getfriends.h
blobd36a5986f9084e8d366ab40761fa4c04e952d75d
1 /* liblivejournal - a client library for LiveJournal.
2 * Copyright (C) 2003 Evan Martin <evan@livejournal.com>
4 * vim: tabstop=4 shiftwidth=4 noexpandtab :
5 */
7 #ifndef __LIVEJOURNAL_GETFRIENDS_H__
8 #define __LIVEJOURNAL_GETFRIENDS_H__
10 #include "liblj/verb.h"
12 typedef struct {
13 LJVerb verb;
14 GHashTable *friends;
15 } LJGetFriends;
17 LJGetFriends* lj_getfriends_new(LJUser *user);
18 void lj_getfriends_free(LJGetFriends *getfriends, gboolean includefriends);
20 #endif /* __LIVEJOURNAL_GETFRIENDS_H__ */