diff options
author | Andre Heinecke <[email protected]> | 2018-10-09 09:26:15 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2018-10-09 09:26:15 +0000 |
commit | c565cf42a38a8bda936df8c52936589cc8a06ca3 (patch) | |
tree | b497f7d8d86050b5cc69a06af925728d175ef0e3 /lang/cpp | |
parent | cpp: Add first manual tests (diff) | |
download | gpgme-c565cf42a38a8bda936df8c52936589cc8a06ca3.tar.gz gpgme-c565cf42a38a8bda936df8c52936589cc8a06ca3.zip |
cpp: Add KeyListMode::Locate
* cpp/src/global.h (KeyListMode): Add Locate.
--
Similar to locate in core.
Diffstat (limited to 'lang/cpp')
-rw-r--r-- | lang/cpp/src/global.h | 1 |
1 files changed, 1 insertions, 0 deletions
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, |