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
|
/*
* 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
*/
/**
* The number of registries known for the different Outlook version.
*/
int nbOutlookRegister = 4;
/**
* The registries known for the different Outlook version.
*/
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
};
/**
* 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[] = {
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;
}
|