summaryrefslogtreecommitdiffabout
path: root/pwmanager/libcrypt/error/err-sources.h
Unidiff
Diffstat (limited to 'pwmanager/libcrypt/error/err-sources.h') (more/less context) (show whitespace changes)
-rw-r--r--pwmanager/libcrypt/error/err-sources.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/pwmanager/libcrypt/error/err-sources.h b/pwmanager/libcrypt/error/err-sources.h
new file mode 100644
index 0000000..b41eaea
--- a/dev/null
+++ b/pwmanager/libcrypt/error/err-sources.h
@@ -0,0 +1,70 @@
1/* Output of mkstrtable.awk. DO NOT EDIT. */
2
3/* err-sources.h - List of error sources and their description.
4 Copyright (C) 2003, 2004 g10 Code GmbH
5
6 This file is part of libgpg-error.
7
8 libgpg-error is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Lesser General Public License
10 as published by the Free Software Foundation; either version 2.1 of
11 the License, or (at your option) any later version.
12
13 libgpg-error is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public
19 License along with libgpg-error; if not, write to the Free
20 Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
21 02111-1307, USA. */
22
23
24/* The purpose of this complex string table is to produce
25 optimal code with a minimum of relocations. */
26
27static const char msgstr[] =
28 gettext_noop ("Unspecified source") "\0"
29 gettext_noop ("gcrypt") "\0"
30 gettext_noop ("GnuPG") "\0"
31 gettext_noop ("GpgSM") "\0"
32 gettext_noop ("GPG Agent") "\0"
33 gettext_noop ("Pinentry") "\0"
34 gettext_noop ("SCD") "\0"
35 gettext_noop ("GPGME") "\0"
36 gettext_noop ("Keybox") "\0"
37 gettext_noop ("KSBA") "\0"
38 gettext_noop ("Dirmngr") "\0"
39 gettext_noop ("GSTI") "\0"
40 gettext_noop ("User defined source 1") "\0"
41 gettext_noop ("User defined source 2") "\0"
42 gettext_noop ("User defined source 3") "\0"
43 gettext_noop ("User defined source 4") "\0"
44 gettext_noop ("Unknown source");
45
46static const int msgidx[] =
47 {
48 0,
49 19,
50 26,
51 32,
52 38,
53 48,
54 57,
55 61,
56 67,
57 74,
58 79,
59 87,
60 92,
61 114,
62 136,
63 158,
64 180
65 };
66
67#define msgidxof(code) (0 ? -1 \
68 : ((code >= 0) && (code <= 11)) ? (code - 0) \
69 : ((code >= 32) && (code <= 35)) ? (code - 20) \
70 : 36 - 20)