comparison libgaim/protocols/yahoo/yahoo_auth.h @ 14192:60b1bc8dbf37

[gaim-migrate @ 16863] Renamed 'core' to 'libgaim' committer: Tailor Script <tailor@pidgin.im>
author Evan Schoenberg <evan.s@dreskin.net>
date Sat, 19 Aug 2006 01:50:10 +0000
parents
children
comparison
equal deleted inserted replaced
14191:009db0b357b5 14192:60b1bc8dbf37
1 /*
2 * yahoo_auth.h: Header for Yahoo Messenger authentication schemes. Eew.
3 *
4 * Copyright(c) 2003 Cerulean Studios
5 */
6
7 #ifndef _YAHOO_AUTH_H_
8 #define _YAHOO_AUTH_H_
9
10 #define NUM_TYPE_THREES 105
11 #define NUM_TYPE_FOURS 56
12 #define NUM_TYPE_FIVES 37
13
14 unsigned int yahoo_auth_finalCountdown(unsigned int challenge, int divisor, int inner_loop, int outer_loop);
15
16 /* We've defined the Yahoo authentication functions as having types 1-5; all take either 1 or 2 arguments.
17 */
18
19 typedef struct _auth {
20 int type;
21 int var1;
22 int var2;
23 } auth_function_t;
24
25 /* Type 3, 4 and 5 require lookups into ypager.exe's many static chunks of 256 bytes. Store them here.
26 */
27
28 struct buffer_t {
29 unsigned int buffer_start;
30 unsigned char buffer[257];
31 };
32
33 #endif /* _YAHOO_AUTH_H_ */