1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
/*
* $Id: avatar.h 3646 2006-08-29 20:38:45Z gena01 $
*
* myYahoo Miranda Plugin
*
* Authors: Gennady Feldman (aka Gena01)
* Laurent Marechal (aka Peorth)
*
* This code is under GPL and is based on AIM, MSN and Miranda source code.
* I want to thank Robert Rainwater and George Hazan for their code and support
* and for answering some of my questions during development of this plugin.
*/
#ifndef _YAHOO_AVATAR_H_
#define _YAHOO_AVATAR_H_
void YAHOO_request_avatar(const char* who);
void GetAvatarFileName(HANDLE hContact, char* pszDest, int cbLen, int type);
void YAHOO_SendAvatar(const char *szFile);
void YAHOO_set_avatar(int buddy_icon);
void YAHOO_bcast_picture_update(int buddy_icon);
void YAHOO_bcast_picture_checksum(int cksum);
int YAHOO_SaveBitmapAsAvatar( HBITMAP hBitmap, const char* szFileName );
HBITMAP YAHOO_StretchBitmap( HBITMAP hBitmap );
void yahoo_reset_avatar(HANDLE hContact);
HBITMAP YAHOO_SetAvatar(const char *szFile);
void YAHOO_get_avatar(const char *who, const char *pic_url, long cksum);
/**
* AVS Services - loadavatars.dll uses these to get the info from us
*/
#define PS_ISAVATARFORMATSUPPORTED "/IsAvatarFormatSupported"
#define PS_GETMYAVATARMAXSIZE "/GetMyAvatarMaxSize"
#define PS_SETMYAVATAR "/SetMyAvatar"
#define PS_GETMYAVATAR "/GetMyAvatar"
int YahooGetAvatarInfo(WPARAM wParam,LPARAM lParam);
int YahooAvatarFormatSupported(WPARAM wParam, LPARAM lParam);
int YahooGetAvatarSize(WPARAM wParam, LPARAM lParam);
int YahooGetMyAvatar(WPARAM wParam, LPARAM lParam);
int YahooSetMyAvatar(WPARAM wParam, LPARAM lParam);
/**
* Callbacks for libyahoo2
*/
void ext_yahoo_got_picture(int id, const char *me, const char *who, const char *pic_url, int cksum, int type);
void ext_yahoo_got_picture_checksum(int id, const char *me, const char *who, int cksum);
void ext_yahoo_got_picture_update(int id, const char *me, const char *who, int buddy_icon);
void ext_yahoo_got_avatar_update(int id, const char *me, const char *who, int buddy_icon);
#endif
|