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
|
#include "headers.h"
BYTE UseKnownModList;
#define MAXMODS 1024
char *KnownModules[MAXMODS];
int KnownModulesCount = 0;
INT_PTR RegisterModule(WPARAM wParam, LPARAM lParam)
{
char **mods = (char**)wParam;
int count = lParam;
int i;
for (i=0;i<count && KnownModulesCount<MAXMODS;i++)
KnownModules[KnownModulesCount++] = mir_tstrdup(mods[i]);
return 0;
}
INT_PTR RegisterSingleModule(WPARAM wParam, LPARAM lParam)
{
char *mods = (char*)wParam;
if (KnownModulesCount<MAXMODS)
KnownModules[KnownModulesCount++] = mir_tstrdup(mods);
return 0;
}
int IsModuleKnown(char *module)
{
int i;
if (!UseKnownModList) return 1; // not using known list so all are "known"
for(i=0;i<KnownModulesCount;i++)
{
if (KnownModules[i] && !mir_strcmp(module,KnownModules[i]))
return 1;
}
return 0;
}
void FreeKnownModuleList()
{
int i;
for(i=0;i<KnownModulesCount;i++)
{
mir_free(KnownModules[i]);
}
}
void doOldKnownModulesList()
{
ModuleSettingLL msll;
struct ModSetLinkLinkItem *setting;
DBVARIANT dbv;
char *var, *temp;
if (!EnumSettings(NULL,"KnownModules", &msll)) return;
setting = msll.first;
while(setting)
{
if (!DBGetContactSetting(NULL,"KnownModules",setting->name,&dbv) && dbv.type == DBVT_ASCIIZ)
{
temp = (char*)mir_alloc((strlen(dbv.pszVal)+5)*sizeof(char));
if (!temp) break;
strcpy(temp,dbv.pszVal);
strcat(temp,",\0");
var = strtok(temp,", ");
while (var)
{
if (KnownModulesCount<MAXMODS)
KnownModules[KnownModulesCount++] = mir_tstrdup(var);
var = strtok(NULL,", ");
}
mir_free(temp);
}
DBFreeVariant(&dbv);
setting = (struct ModSetLinkLinkItem *)setting->next;
}
FreeModuleSettingLL(&msll);
UseKnownModList = DBGetContactSettingByte(NULL,modname,"UseKnownModList",0);
}
|