Mercurial > pidgin.yaz
view libpurple/protocols/yahoo/yahoo_auth.h @ 22705:9bc93b4b0f92
Move 2 of the 5 pixels' padding between paragraphs to above the line.
The only noticable effect is to put 2 pixels of space above the first line in
the entry box, which means the letters aren't rammed up against the top.
(I seem to have just admitted to caring about 2 pixels in a text input.)
author | Will Thompson <will.thompson@collabora.co.uk> |
---|---|
date | Thu, 24 Apr 2008 22:23:40 +0000 |
parents | 5fe8042783c1 |
children | 1efbc28b5042 |
line wrap: on
line source
/* * yahoo_auth.h: Header for Yahoo Messenger authentication schemes. Eew. * * Copyright(c) 2003 Cerulean Studios */ #ifndef _YAHOO_AUTH_H_ #define _YAHOO_AUTH_H_ #define NUM_TYPE_THREES 105 #define NUM_TYPE_FOURS 56 #define NUM_TYPE_FIVES 37 unsigned int yahoo_auth_finalCountdown(unsigned int challenge, int divisor, int inner_loop, int outer_loop); /* We've defined the Yahoo authentication functions as having types 1-5; all take either 1 or 2 arguments. */ typedef struct _auth { int type; int var1; int var2; } auth_function_t; /* Type 3, 4 and 5 require lookups into ypager.exe's many static chunks of 256 bytes. Store them here. */ struct buffer_t { unsigned int buffer_start; unsigned char buffer[257]; }; #endif /* _YAHOO_AUTH_H_ */