we don't really need to build src/liblj/ as library; and we don't need to write each...
[k8lowj.git] / src / liblj / login.h
blob33d7c3fbeb44367c36ca0970f19eff3d55b82820
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_LOGIN_H__
8 #define __LIVEJOURNAL_LOGIN_H__
10 #include "liblj/verb.h"
12 typedef struct _LJLogin {
13 LJVerb verb;
14 char *message;
15 } LJLogin;
17 LJLogin* lj_login_new(LJUser *user, const char *clientversion);
18 void lj_login_free(LJLogin *login);
20 #endif /* __LIVEJOURNAL_LOGIN_H__ */