b89f9aebb5ad319b99079cd5d315e63d81238a50
[openssl.git] / crypto / ui / ui_err.c
1 /*
2  * Generated by util/mkerr.pl DO NOT EDIT
3  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
4  *
5  * Licensed under the OpenSSL license (the "License").  You may not use
6  * this file except in compliance with the License.  You can obtain a copy
7  * in the file LICENSE in the source distribution or at
8  * https://www.openssl.org/source/license.html
9  */
10
11 #include <stdio.h>
12 #include <openssl/err.h>
13 #include <openssl/ui.h>
14
15 /* BEGIN ERROR CODES */
16 #ifndef OPENSSL_NO_ERR
17
18 # define ERR_FUNC(func) ERR_PACK(ERR_LIB_UI,func,0)
19 # define ERR_REASON(reason) ERR_PACK(ERR_LIB_UI,0,reason)
20
21 static ERR_STRING_DATA UI_str_functs[] = {
22     {ERR_FUNC(UI_F_GENERAL_ALLOCATE_BOOLEAN), "general_allocate_boolean"},
23     {ERR_FUNC(UI_F_GENERAL_ALLOCATE_PROMPT), "general_allocate_prompt"},
24     {ERR_FUNC(UI_F_UI_CREATE_METHOD), "UI_create_method"},
25     {ERR_FUNC(UI_F_UI_CTRL), "UI_ctrl"},
26     {ERR_FUNC(UI_F_UI_DUP_ERROR_STRING), "UI_dup_error_string"},
27     {ERR_FUNC(UI_F_UI_DUP_INFO_STRING), "UI_dup_info_string"},
28     {ERR_FUNC(UI_F_UI_DUP_INPUT_BOOLEAN), "UI_dup_input_boolean"},
29     {ERR_FUNC(UI_F_UI_DUP_INPUT_STRING), "UI_dup_input_string"},
30     {ERR_FUNC(UI_F_UI_DUP_VERIFY_STRING), "UI_dup_verify_string"},
31     {ERR_FUNC(UI_F_UI_GET0_RESULT), "UI_get0_result"},
32     {ERR_FUNC(UI_F_UI_NEW_METHOD), "UI_new_method"},
33     {ERR_FUNC(UI_F_UI_PROCESS), "UI_process"},
34     {ERR_FUNC(UI_F_UI_SET_RESULT), "UI_set_result"},
35     {0, NULL}
36 };
37
38 static ERR_STRING_DATA UI_str_reasons[] = {
39     {ERR_REASON(UI_R_COMMON_OK_AND_CANCEL_CHARACTERS),
40      "common ok and cancel characters"},
41     {ERR_REASON(UI_R_INDEX_TOO_LARGE), "index too large"},
42     {ERR_REASON(UI_R_INDEX_TOO_SMALL), "index too small"},
43     {ERR_REASON(UI_R_NO_RESULT_BUFFER), "no result buffer"},
44     {ERR_REASON(UI_R_PROCESSING_ERROR), "processing error"},
45     {ERR_REASON(UI_R_RESULT_TOO_LARGE), "result too large"},
46     {ERR_REASON(UI_R_RESULT_TOO_SMALL), "result too small"},
47     {ERR_REASON(UI_R_UNKNOWN_CONTROL_COMMAND), "unknown control command"},
48     {0, NULL}
49 };
50
51 #endif
52
53 int ERR_load_UI_strings(void)
54 {
55 #ifndef OPENSSL_NO_ERR
56
57     if (ERR_func_error_string(UI_str_functs[0].error) == NULL) {
58         ERR_load_strings(0, UI_str_functs);
59         ERR_load_strings(0, UI_str_reasons);
60     }
61 #endif
62     return 1;
63 }