blob: 9626d9bda7acd1a32ab27d921d827f099c7815e1 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | #pragma once
struct CMTProto : public PROTO<CMTProto>
{
public:
	//////////////////////////////////////////////////////////////////////////////////////
	// Ctors
	CMTProto(const char *protoName, const wchar_t *userName);
	~CMTProto();
	//////////////////////////////////////////////////////////////////////////////////////
	// Virtual functions
	INT_PTR GetCaps(int type, MCONTACT hContact = NULL) override;
	
	int SetStatus(int iNewStatus) override;
};
 |