summaryrefslogtreecommitdiff
path: root/protocols/YAMN/src/browser/browser.h
blob: 64f01d314792ba71ed70197dcbcceae1d45beaa5 (plain)
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
#ifndef __MAILBROWSER_H
#define __MAILBROWSER_H

struct YAMN_MAILBROWSERPARAM
{
	CAccount *account;
	uint32_t nflags;			//flags YAMN_ACC_??? when new mails
	uint32_t nnflags;			//flags YAMN_ACC_??? when no new mails
	void *Param;
};

struct YAMN_MAILSHOWPARAM
{
	CAccount *account;
	YAMNMAIL *mail;
};

struct BadConnectionParam
{
	CAccount *account;
	UINT_PTR errcode;
	void *Param;
};

#endif