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
249
250
251
252
253
254
255
256
257
258
|
/*
* YAMN plugin export functions for protocols
*
* (c) majvan 2002-2004
*/
#if !defined(_WIN64)
#include "filter/simple/AggressiveOptimize.h"
#endif
#include <windows.h>
#include <tchar.h>
#include <stdio.h>
#include <newpluginapi.h>
#include <m_database.h>
#include "m_yamn.h"
#include "m_protoplugin.h"
#include "m_synchro.h"
#include "debug.h"
//- imported ---------------------------------------------------------------------------------------
//--------------------------------------------------------------------------------------------------
extern WCHAR *UserDirectory; //e.g. "F:\WINNT\Profiles\UserXYZ"
extern WCHAR *ProfileName; //e.g. "majvan"
extern SWMRG *AccountBrowserSO;
extern LPCRITICAL_SECTION PluginRegCS;
extern YAMN_VARIABLES YAMNVar;
//From synchro.cpp
extern BOOL WINAPI SWMRGInitialize(PSWMRG,TCHAR *);
extern void WINAPI SWMRGDelete(PSWMRG);
extern DWORD WINAPI SWMRGWaitToWrite(PSWMRG pSWMRG,DWORD dwTimeout);
extern void WINAPI SWMRGDoneWriting(PSWMRG pSWMRG);
extern DWORD WINAPI SWMRGWaitToRead(PSWMRG pSWMRG, DWORD dwTimeout);
extern void WINAPI SWMRGDoneReading(PSWMRG pSWMRG);
//From account.cpp
extern int StopAccounts(HYAMNPROTOPLUGIN Plugin);
extern int DeleteAccounts(HYAMNPROTOPLUGIN Plugin);
extern int WaitForAllAccounts(HYAMNPROTOPLUGIN Plugin,BOOL GetAccountBrowserAccess);
//--------------------------------------------------------------------------------------------------
//--------------------------------------------------------------------------------------------------
WCHAR FileName2[]=L"%s\\yamn-accounts.%s.%s.book"; //UserDirectory\\yamn-accounts.PluginName.UserProfileName.book
PYAMN_PROTOPLUGINQUEUE FirstProtoPlugin=NULL;
INT_PTR RegisterProtocolPluginSvc(WPARAM,LPARAM);
//Removes plugin from queue and deletes registration structures
INT_PTR UnregisterProtocolPlugin(HYAMNPROTOPLUGIN Plugin);
INT_PTR UnregisterProtocolPluginSvc(WPARAM,LPARAM);
//Removes plugins from queue and deletes registration structures
INT_PTR UnregisterProtoPlugins();
//Sets imported functions for an plugin and therefore it starts plugin to be registered and running
// Plugin- plugin, which wants to set its functions
// YAMNFcn- pointer to imported functions with accounts
// YAMNFcnVer- version of YAMN_PROTOIMPORTFCN, use YAMN_PROTOIMPORTFCNVERSION
// YAMNMailFcn- pointer to imported functions with mails
// YAMNMailFcnVer- version of YAMN_MAILIMPORTFCN, use YAMN_MAILIMPORTFCNVERSION
// returns nonzero if success
int WINAPI SetProtocolPluginFcnImportFcn(HYAMNPROTOPLUGIN Plugin,PYAMN_PROTOIMPORTFCN YAMNFcn,DWORD YAMNFcnVer,PYAMN_MAILIMPORTFCN YAMNMailFcn,DWORD YAMNMailFcnVer);
INT_PTR GetFileNameWSvc(WPARAM,LPARAM);
INT_PTR GetFileNameASvc(WPARAM,LPARAM);
INT_PTR DeleteFileNameSvc(WPARAM,LPARAM);
struct CExportedFunctions ProtoPluginExportedFcn[]=
{
{YAMN_SETPROTOCOLPLUGINFCNIMPORTID,(void *)SetProtocolPluginFcnImportFcn},
};
struct CExportedServices ProtoPluginExportedSvc[]=
{
{MS_YAMN_REGISTERPROTOPLUGIN,RegisterProtocolPluginSvc},
{MS_YAMN_UNREGISTERPROTOPLUGIN,UnregisterProtocolPluginSvc},
{MS_YAMN_GETFILENAMEA,GetFileNameASvc},
{MS_YAMN_GETFILENAMEW,GetFileNameWSvc},
{MS_YAMN_DELETEFILENAME,DeleteFileNameSvc},
};
//--------------------------------------------------------------------------------------------------
//--------------------------------------------------------------------------------------------------
INT_PTR RegisterProtocolPluginSvc(WPARAM wParam,LPARAM lParam)
{
PYAMN_PROTOREGISTRATION Registration=(PYAMN_PROTOREGISTRATION)wParam;
HYAMNPROTOPLUGIN Plugin;
if(lParam!=YAMN_PROTOREGISTRATIONVERSION)
return 0;
if((Registration->Name==NULL) || (Registration->Ver==NULL))
return (INT_PTR)NULL;
if(NULL==(Plugin=new YAMN_PROTOPLUGIN))
return (INT_PTR)NULL;
Plugin->PluginInfo=Registration;
Plugin->FirstAccount=NULL;
Plugin->AccountBrowserSO=new SWMRG;
SWMRGInitialize(Plugin->AccountBrowserSO,NULL);
Plugin->Fcn=NULL;
Plugin->MailFcn=NULL;
#ifdef DEBUG_SYNCHRO
DebugLog(SynchroFile,"::: YAMN- new protocol registered: %0x (%s) :::\n",Plugin,Registration->Name);
#endif
return (INT_PTR)Plugin;
}
int WINAPI SetProtocolPluginFcnImportFcn(HYAMNPROTOPLUGIN Plugin,PYAMN_PROTOIMPORTFCN YAMNFcn,DWORD YAMNFcnVer,PYAMN_MAILIMPORTFCN YAMNMailFcn,DWORD YAMNMailFcnVer)
{
PYAMN_PROTOPLUGINQUEUE Parser;
if(YAMNFcnVer!=YAMN_PROTOIMPORTFCNVERSION)
return 0;
if(YAMNMailFcnVer!=YAMN_MAILIMPORTFCNVERSION)
return 0;
if(YAMNFcn==NULL)
return 0;
if(YAMNMailFcn==NULL)
return 0;
#ifdef DEBUG_SYNCHRO
DebugLog(SynchroFile,"::: YAMN- protocol %0x import succeed :::\n",Plugin);
#endif
Plugin->Fcn=YAMNFcn;
Plugin->MailFcn=YAMNMailFcn;
EnterCriticalSection(PluginRegCS);
//We add protocol to the protocol list
for(Parser=FirstProtoPlugin;Parser!=NULL && Parser->Next!=NULL;Parser=Parser->Next);
if(Parser==NULL)
{
FirstProtoPlugin=new YAMN_PROTOPLUGINQUEUE;
Parser=FirstProtoPlugin;
}
else
{
Parser->Next=new YAMN_PROTOPLUGINQUEUE;
Parser=Parser->Next;
}
Parser->Plugin=Plugin;
Parser->Next=NULL;
LeaveCriticalSection(PluginRegCS);
return 1;
}
INT_PTR UnregisterProtocolPlugin(HYAMNPROTOPLUGIN Plugin)
{
PYAMN_PROTOPLUGINQUEUE Parser,Found;
#ifdef DEBUG_SYNCHRO
DebugLog(SynchroFile,"Entering UnregisterProtocolPlugin\n");
#endif
if(FirstProtoPlugin->Plugin==Plugin)
{
Found=FirstProtoPlugin;
FirstProtoPlugin=FirstProtoPlugin->Next;
}
else
{
for(Parser=FirstProtoPlugin;(Parser->Next!=NULL) && (Plugin!=Parser->Next->Plugin);Parser=Parser->Next);
if(Parser->Next!=NULL)
{
Found=Parser->Next;
Parser->Next=Parser->Next->Next;
}
else
Found=NULL;
}
if(Found!=NULL)
{
StopAccounts(Plugin);
DeleteAccounts(Plugin);
if(Plugin->Fcn->UnLoadFcn!=NULL)
Plugin->Fcn->UnLoadFcn((void *)0);
delete Found->Plugin->AccountBrowserSO;
delete Found->Plugin;
delete Found;
#ifdef DEBUG_SYNCHRO
DebugLog(SynchroFile,"::: YAMN- protocol %0x unregistered :::\n",Plugin);
#endif
}
else
return 0;
return 1;
}
INT_PTR UnregisterProtocolPluginSvc(WPARAM wParam,LPARAM lParam)
{
HYAMNPROTOPLUGIN Plugin=(HYAMNPROTOPLUGIN)wParam;
EnterCriticalSection(PluginRegCS);
UnregisterProtocolPlugin(Plugin);
LeaveCriticalSection(PluginRegCS);
return 1;
}
INT_PTR UnregisterProtoPlugins()
{
EnterCriticalSection(PluginRegCS);
//We remove protocols from the protocol list
while(FirstProtoPlugin!=NULL)
UnregisterProtocolPlugin(FirstProtoPlugin->Plugin);
LeaveCriticalSection(PluginRegCS);
return 1;
}
INT_PTR GetFileNameWSvc(WPARAM wParam,LPARAM)
{
WCHAR *FileName;
if(NULL==(FileName=new WCHAR[MAX_PATH]))
return NULL;
swprintf(FileName,FileName2,UserDirectory,(WCHAR *)wParam,ProfileName);
// MessageBoxW(NULL,FileName,L"GetFileNameW",MB_OK);
return (INT_PTR)FileName;
}
INT_PTR GetFileNameASvc(WPARAM wParam,LPARAM)
{
WCHAR *ConvertedInput;
WCHAR *FileName;
if(NULL==(FileName=new WCHAR[MAX_PATH]))
return NULL;
if(NULL==(ConvertedInput=new WCHAR[MAX_PATH]))
{
delete[] FileName;
return NULL;
}
// Convert input string to unicode
MultiByteToWideChar(CP_ACP,MB_USEGLYPHCHARS,(char *)wParam,-1,ConvertedInput,(int)strlen((char *)wParam)+1);
swprintf(FileName,FileName2,UserDirectory,ConvertedInput,ProfileName);
// MessageBoxW(NULL,FileName,L"GetFileNameA",MB_OK);
delete[] ConvertedInput;
return (INT_PTR)FileName;
}
INT_PTR DeleteFileNameSvc(WPARAM wParam,LPARAM)
{
if((WCHAR *)wParam!=NULL)
delete[] (WCHAR *)wParam;
return 0;
}
|