summaryrefslogtreecommitdiff
path: root/protocols/YAMN/src/browser/browser.h
blob: cdd0ffb1ba862656e219875024ba8a12318e98e3 (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;
	HYAMNMAIL mail;
};

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

#endif