From 7c0ea06f2db4f16569b2098463396797eb090100 Mon Sep 17 00:00:00 2001 From: Thomas Date: Tue, 29 Jan 2019 09:29:50 +0100 Subject: [PATCH 1/2] Update Windows target version --- libpEpAdapter/libpEpAdapter.vcxproj | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libpEpAdapter/libpEpAdapter.vcxproj b/libpEpAdapter/libpEpAdapter.vcxproj index d984f86..8f1e6d2 100644 --- a/libpEpAdapter/libpEpAdapter.vcxproj +++ b/libpEpAdapter/libpEpAdapter.vcxproj @@ -1,5 +1,5 @@  - + Debug @@ -22,32 +22,32 @@ {EC44FEC9-2F3A-4A0C-B60E-0F22AA43EF58} Win32Proj libpEpAdapter - 8.1 + 10.0.17763.0 StaticLibrary true - v140 + v141 Unicode StaticLibrary false - v140 + v141 true Unicode StaticLibrary true - v140 + v141 Unicode StaticLibrary false - v140 + v141 true Unicode From 5a56066f023bc9ba145cb7dbfc37f47cfe372c64 Mon Sep 17 00:00:00 2001 From: Roker Date: Wed, 6 Feb 2019 15:13:02 +0100 Subject: [PATCH 2/2] add 3 enumerators to status_to_string() function --- status_to_string.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/status_to_string.cc b/status_to_string.cc index 252bed3..4edf2bf 100644 --- a/status_to_string.cc +++ b/status_to_string.cc @@ -36,6 +36,10 @@ std::string status_to_string(PEP_STATUS status) case PEP_MALFORMED_KEY_RESET_MSG : status_string = "PEP_MALFORMED_KEY_RESET_MSG"; break; case PEP_KEY_NOT_RESET : status_string = "PEP_KEY_NOT_RESET"; break; + case PEP_KEY_IMPORTED : status_string = "PEP_KEY_IMPORTED"; break; + case PEP_NO_KEY_IMPORTED : status_string = "PEP_NO_KEY_IMPORTED"; break; + case PEP_KEY_IMPORT_STATUS_UNKNOWN : status_string = "PEP_KEY_IMPORT_STATUS_UNKNOWN"; break; + case PEP_CANNOT_FIND_IDENTITY : status_string = "PEP_CANNOT_FIND_IDENTITY"; break; case PEP_CANNOT_SET_PERSON : status_string = "PEP_CANNOT_SET_PERSON"; break; case PEP_CANNOT_SET_PGP_KEYPAIR : status_string = "PEP_CANNOT_SET_PGP_KEYPAIR"; break;