forked from gradetwo/fetion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathf_portrait.h
More file actions
20 lines (20 loc) · 810 Bytes
/
f_portrait.h
File metadata and controls
20 lines (20 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _F_PORTRAIT_H_
#define _F_PORTRAIT_H_
#include "fetion.h"
#include "f_buddy.h"
#include "f_chat.h"
#include "f_group.h"
#include "f_login.h"
#include "f_sysmsg.h"
#include "f_user.h"
#include "f_util.h"
void CheckPortrait(struct fetion_account_data *sip, const gchar * who,
const gchar * crc);
void DownLoadPortrait(gpointer data, gint source, const gchar * error_message);
void GetPortrait_cb(gpointer data, gint source, const gchar * error_message);
void GetPortrait(struct fetion_account_data *sip, struct fetion_buddy *buddy,
const gchar * host);
void UploadPortrait_cb(gpointer data, gint source, const gchar * error_message);
void UploadPortrait(gpointer data, gint source, const gchar * error_message);
void fetion_set_buddy_icon(PurpleConnection * gc, PurpleStoredImage * img);
#endif