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
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Copyright @ 2015 Atlassian Pty Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#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
*/
/**
* The number of registries known for the different Outlook version.
*/
int nbOutlookRegister = 5;
/**
* The registries known for the different Outlook version.
*/
TCHAR outlookRegister[][MAX_PATH] = {
TEXT("{5812C571-53F0-4467-BEFA-0A4F47A9437C}"), // Outlook 2016
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
};
/**
* 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)
{
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;
}
/**
* Returns the Outlook version installed.
*
* @return 2013 for "Outlook 2013", 2010 for "Outlook 2010", 2007 for "Outlook
* 2007" or 2003 for "Outlook 2003". -1 otherwise.
*/
int MAPIBitness_getOutlookVersion(void)
{
int outlookVersions[] = {
2016, // Outlook 2016
2013, // Outlook 2013
2010, // Outlook 2010
2007, // Outlook 2007
2003 // 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 outlookVersions[i];
}
else if(MsiProvideQualifiedComponent(
outlookRegister[i],
TEXT("outlook.exe"),
(DWORD) INSTALLMODE_DEFAULT,
NULL,
&pathLength)
== ERROR_SUCCESS)
{
return outlookVersions[i];
}
}
return -1;
}
|