music.c: cosmetix
[k8lowj.git] / src / liblj / checkfriends.h
blob9dabf405bb05aee93646150a82f16a0fbf7c38f8
1 /* liblivejournal - a client library for LiveJournal.
2 * Copyright (C) 2003-2004 Evan Martin <martine@danga.com>
3 */
4 #ifndef __LIVEJOURNAL_CHECKFRIENDS_H__
5 #define __LIVEJOURNAL_CHECKFRIENDS_H__
7 #include "liblj/verb.h"
10 typedef struct {
11 LJVerb verb;
12 char *lastupdate;
13 int interval;
14 int newposts;
15 } LJCheckFriends;
18 LJCheckFriends *lj_checkfriends_new (LJUser *user, const char *lastupdate);
19 void lj_checkfriends_set_mask (LJCheckFriends *cf, guint32 mask);
20 void lj_checkfriends_free (LJCheckFriends *checkfriends);
23 #endif /* __LIVEJOURNAL_CHECKFRIENDS_H__ */