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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
|
/*
Copyright (C) 2013 Miranda NG Project (http://miranda-ng.org)
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation version 2
of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "stdafx.h"
CVkProto::CVkProto(const char *szModuleName, const TCHAR *ptszUserName) :
PROTO<CVkProto>(szModuleName, ptszUserName)
{
}
CVkProto::~CVkProto()
{
}
int CVkProto::OnModulesLoaded(WPARAM wParam, LPARAM lParam)
{
return 0;
}
int CVkProto::OnPreShutdown(WPARAM wParam, LPARAM lParam)
{
return 0;
}
//////////////////////////////////////////////////////////////////////////////
DWORD_PTR CVkProto::GetCaps(int type, HANDLE hContact)
{
switch(type) {
case PFLAGNUM_1:
return PF1_IM | PF1_CHAT | PF1_SERVERCLIST | PF1_AUTHREQ | PF1_BASICSEARCH | PF1_SEARCHBYEMAIL | PF1_SEARCHBYNAME | PF1_MODEMSG;
case PFLAGNUM_2:
return PF2_ONLINE | PF2_INVISIBLE | PF2_ONTHEPHONE | PF2_IDLE; // | PF2_SHORTAWAY;
case PFLAGNUM_3:
return PF2_ONLINE; // | PF2_SHORTAWAY;
case PFLAGNUM_4:
return PF4_NOCUSTOMAUTH | PF4_FORCEADDED | PF4_IMSENDUTF | PF4_AVATARS | PF4_SUPPORTTYPING | PF4_NOAUTHDENYREASON | PF4_IMSENDOFFLINE;
case PFLAGNUM_5:
return PF2_ONTHEPHONE;
case PFLAG_MAXLENOFMESSAGE:
return 2000;
case PFLAG_UNIQUEIDTEXT:
return (DWORD_PTR)"VK ID";
case PFLAG_UNIQUEIDSETTING:
return (DWORD_PTR)"ID";
}
return 0;
}
//////////////////////////////////////////////////////////////////////////////
int CVkProto::SetStatus(int new_status)
{
return 0;
}
HANDLE CVkProto::SearchBasic(const PROTOCHAR* id)
{
return 0;
}
HANDLE CVkProto::SearchByEmail(const PROTOCHAR* email)
{
return 0;
}
HANDLE CVkProto::SearchByName(const PROTOCHAR* nick, const PROTOCHAR* firstName, const PROTOCHAR* lastName)
{
return 0;
}
HANDLE CVkProto::AddToList(int flags, PROTOSEARCHRESULT* psr)
{
return NULL;
}
int CVkProto::AuthRequest(HANDLE hContact,const PROTOCHAR *message)
{
return 0;
}
int CVkProto::Authorize(HANDLE hDbEvent)
{
//if (!hDbEvent)
return 1;
}
int CVkProto::AuthDeny(HANDLE hDbEvent, const PROTOCHAR *reason)
{
//if (!hDbEvent || isOffline())
return 1;
}
int CVkProto::RecvMsg(HANDLE hContact, PROTORECVEVENT *pre)
{
return 0;
}
int CVkProto::SendMsg(HANDLE hContact, int flags, const char *msg)
{
return 0;
}
int CVkProto::UserIsTyping(HANDLE hContact, int type)
{
return 0;
}
HANDLE CVkProto::AddToListByEvent(int flags,int iContact,HANDLE hDbEvent)
{
return NULL;
}
int CVkProto::AuthRecv(HANDLE hContact,PROTORECVEVENT *)
{
return 1;
}
HANDLE CVkProto::ChangeInfo(int type,void *info_data)
{
MessageBoxA(0,"ChangeInfo","",0);
return NULL;
}
HANDLE CVkProto::FileAllow(HANDLE hContact,HANDLE hTransfer,const PROTOCHAR *path)
{
return NULL;
}
int CVkProto::FileCancel(HANDLE hContact,HANDLE hTransfer)
{
return 1;
}
int CVkProto::FileDeny(HANDLE hContact,HANDLE hTransfer,const PROTOCHAR *reason)
{
return 1;
}
int CVkProto::FileResume(HANDLE hTransfer,int *action,const PROTOCHAR **filename)
{
return 1;
}
int CVkProto::GetInfo(HANDLE hContact, int infoType)
{
// TODO: Most probably some ProtoAck should be here instead
return 1;
}
HWND CVkProto::SearchAdvanced(HWND owner)
{
return NULL;
}
HWND CVkProto::CreateExtendedSearchUI(HWND owner)
{
return NULL;
}
int CVkProto::RecvContacts(HANDLE hContact,PROTORECVEVENT *)
{
return 1;
}
int CVkProto::RecvFile(HANDLE hContact,PROTORECVFILET *)
{
return 1;
}
int CVkProto::RecvUrl(HANDLE hContact,PROTORECVEVENT *)
{
return 1;
}
int CVkProto::SendContacts(HANDLE hContact,int flags,int nContacts,HANDLE *hContactsList)
{
return 1;
}
HANDLE CVkProto::SendFile(HANDLE hContact,const PROTOCHAR *desc, PROTOCHAR **files)
{
return NULL;
}
int CVkProto::SendUrl(HANDLE hContact,int flags,const char *url)
{
return 1;
}
int CVkProto::SetApparentMode(HANDLE hContact,int mode)
{
return 1;
}
int CVkProto::RecvAwayMsg(HANDLE hContact,int mode,PROTORECVEVENT *evt)
{
return 1;
}
HANDLE CVkProto::GetAwayMsg(HANDLE hContact)
{
return 0; // Status messages are disabled
}
int CVkProto::SetAwayMsg(int status, const PROTOCHAR *msg)
{
return 0; // Status messages are disabled
}
//////////////////////////////////////////////////////////////////////////////
int CVkProto::OnEvent(PROTOEVENTTYPE event, WPARAM wParam, LPARAM lParam)
{
switch(event) {
case EV_PROTO_ONLOAD:
return OnModulesLoaded(wParam,lParam);
case EV_PROTO_ONEXIT:
return OnPreShutdown(wParam,lParam);
case EV_PROTO_ONOPTIONS:
return OnOptionsInit(wParam,lParam);
}
return 1;
}
|