Mercurial > pidgin
view src/protocols/msn/nexus.h @ 8380:4a5b36510665
[gaim-migrate @ 9108]
Just a minor WYSIWYG fix; now the grow and shrink buttons work properly.
Also, the CSS standard says that each font size should be 1.2 times the size
of the next smallest, and W3C tends to be smart about these things, so I did
that. Also, timestamps are once again size=2, which I think looks better.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Mon, 01 Mar 2004 20:52:57 +0000 |
parents | d0ba2f7b40e7 |
children | 143d0b29ba82 |
line wrap: on
line source
#ifndef _MSN_NEXUS_H_ #define _MSN_NEXUS_H_ typedef struct _MsnNexus MsnNexus; #include "session.h" struct _MsnNexus { MsnSession *session; char *login_host; char *login_path; GHashTable *challenge_data; }; void msn_nexus_connect(MsnNexus *nexus); MsnNexus *msn_nexus_new(MsnSession *session); void msn_nexus_destroy(MsnNexus *nexus); #endif // _MSN_NEXUS_H_