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
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
#include "MAPIBitness.h"
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <Msi.h>
#include <stdio.h>
/**
* Checks the bitness of the Outlook installation and of the Jitsi executable.
*
* @author Vincent Lucas
*/
/**
* Returns the bitness of the current executable.
*
* @return 64 if the current executable is 64 bits. 32 otherwise.
*/
int MAPIBitness_getExecutableBitnessVersion(void)
{
char executable[FILENAME_MAX];
GetModuleFileName(NULL, executable, FILENAME_MAX);
DWORD type;
GetBinaryType(executable, &type);
if(type == SCS_64BIT_BINARY)
{
return 64;
}
return 32;
}
/**
* Returns the bitness of the Outlook installation.
*
* @return 64 if Outlook 64 bits version is installed. 32 if Outlook 32 bits
* version is installed. -1 otherwise.
*/
int MAPIBitness_getOutlookBitnessVersion(void)
{
int nbOutlookRegister = 3;
TCHAR outlookRegister[][MAX_PATH] = {
TEXT("{E83B4360-C208-4325-9504-0D23003A74A5}"), // Outlook 2013
TEXT("{1E77DE88-BCAB-4C37-B9E5-073AF52DFD7A}"), // Outlook 2010
TEXT("{24AAE126-0911-478F-A019-07B875EB9996}"), // Outlook 2007
TEXT("{BC174BAD-2F53-4855-A1D5-0D575C19B1EA}") // Outlook 2003
};
DWORD pathLength = 0;
for(int i = 0; i < nbOutlookRegister; ++i)
{
if(MsiProvideQualifiedComponent(
outlookRegister[i],
TEXT("outlook.x64.exe"),
(DWORD) INSTALLMODE_DEFAULT,
NULL,
&pathLength)
== ERROR_SUCCESS)
{
return 64;
}
else if(MsiProvideQualifiedComponent(
outlookRegister[i],
TEXT("outlook.exe"),
(DWORD) INSTALLMODE_DEFAULT,
NULL,
&pathLength)
== ERROR_SUCCESS)
{
return 32;
}
}
return -1;
}
/**
* Tests if the bitness of the Outlook installation is identical to the current
* executable.
*
* Returns 1 if the bitness of the Outlook installation is identical to the
* current executable. 0 otherwise.
*/
int MAPIBitness_isOutlookBitnessCompatible(void)
{
int outlookVersion = MAPIBitness_getOutlookBitnessVersion();
int executableVersion = MAPIBitness_getExecutableBitnessVersion();
return (outlookVersion == executableVersion);
}
|