comparison libpurple/protocols/yahoo/yahoo_auth.h @ 15373:5fe8042783c1

Rename gtk/ and libgaim/ to pidgin/ and libpurple/
author Sean Egan <seanegan@gmail.com>
date Sat, 20 Jan 2007 02:32:10 +0000
parents
children 1efbc28b5042
comparison
equal deleted inserted replaced
15372:f79e0f4df793 15373:5fe8042783c1
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_ */