summaryrefslogtreecommitdiff
path: root/protocols/YAMN/src/browser/browser.h
blob: 4cf0b55ed4ed1dd456ab6612f826064a2338f3f3 (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
26
27
#ifndef __MAILBROWSER_H
#define __MAILBROWSER_H

#define YAMN_MAILBROWSERVERSION	1

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