aboutsummaryrefslogtreecommitdiffstats
path: root/src/native
diff options
context:
space:
mode:
authorIngo Bauersachs <ingo@jitsi.org>2016-05-15 21:37:12 +0200
committerIngo Bauersachs <ingo@jitsi.org>2016-05-17 21:41:16 +0200
commit812a26f4cecf9e56106a6d93e46c6826fc433685 (patch)
treeb935bdaea156c27bbfe051bb81bbbc4f602bf90a /src/native
parent6fa91bd6cb35dcdc89e32bb9e155f4d01ff1e5b4 (diff)
downloadjitsi-812a26f4cecf9e56106a6d93e46c6826fc433685.zip
jitsi-812a26f4cecf9e56106a6d93e46c6826fc433685.tar.gz
jitsi-812a26f4cecf9e56106a6d93e46c6826fc433685.tar.bz2
Add support for Outlook 2016 address book search
Diffstat (limited to 'src/native')
-rw-r--r--src/native/addrbook/msoutlook/MAPIBitness.cxx4
-rw-r--r--src/native/build.xml3
2 files changed, 6 insertions, 1 deletions
diff --git a/src/native/addrbook/msoutlook/MAPIBitness.cxx b/src/native/addrbook/msoutlook/MAPIBitness.cxx
index 46d80a4..9853b10 100644
--- a/src/native/addrbook/msoutlook/MAPIBitness.cxx
+++ b/src/native/addrbook/msoutlook/MAPIBitness.cxx
@@ -32,13 +32,14 @@
/**
* The number of registries known for the different Outlook version.
*/
-int nbOutlookRegister = 4;
+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
@@ -91,6 +92,7 @@ int MAPIBitness_getOutlookBitnessVersion(void)
int MAPIBitness_getOutlookVersion(void)
{
int outlookVersions[] = {
+ 2016, // Outlook 2016
2013, // Outlook 2013
2010, // Outlook 2010
2007, // Outlook 2007
diff --git a/src/native/build.xml b/src/native/build.xml
index ad408af..90c0704 100644
--- a/src/native/build.xml
+++ b/src/native/build.xml
@@ -592,6 +592,9 @@
can directly use command prompt
When changing idl file in visual studio console execute
midl <idl file>.
+
+ Microsoft MAPI headers won't compile with gcc. See:
+ http://lists.jitsi.org/pipermail/dev/2013-April/001313.html
-->
<target
name="msoutlookaddrbook"