From c565cf42a38a8bda936df8c52936589cc8a06ca3 Mon Sep 17 00:00:00 2001 From: Andre Heinecke Date: Tue, 9 Oct 2018 11:26:15 +0200 Subject: [PATCH] cpp: Add KeyListMode::Locate * cpp/src/global.h (KeyListMode): Add Locate. -- Similar to locate in core. --- lang/cpp/src/global.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lang/cpp/src/global.h b/lang/cpp/src/global.h index 38cfd4ca..e303c49a 100644 --- a/lang/cpp/src/global.h +++ b/lang/cpp/src/global.h @@ -60,6 +60,7 @@ enum Engine { GpgEngine, GpgSMEngine, GpgConfEngine, UnknownEngine, AssuanEngine enum KeyListMode { Local = 0x1, Extern = 0x2, + Locate = 0x3, Signatures = 0x4, SignatureNotations = 0x8, Validate = 0x10,