d60c72dcbacc31289590fb8c07513be44d452912
[openssl.git] / crypto / ui / ui_err.c
1 /*
2  * Generated by util/mkerr.pl DO NOT EDIT
3  * Copyright 1995-2017 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_CLOSE_CONSOLE), "close_console"},
23     {ERR_FUNC(UI_F_ECHO_CONSOLE), "echo_console"},
24     {ERR_FUNC(UI_F_GENERAL_ALLOCATE_BOOLEAN), "general_allocate_boolean"},
25     {ERR_FUNC(UI_F_GENERAL_ALLOCATE_PROMPT), "general_allocate_prompt"},
26     {ERR_FUNC(UI_F_NOECHO_CONSOLE), "noecho_console"},
27     {ERR_FUNC(UI_F_OPEN_CONSOLE), "open_console"},
28     {ERR_FUNC(UI_F_UI_CREATE_METHOD), "UI_create_method"},
29     {ERR_FUNC(UI_F_UI_CTRL), "UI_ctrl"},
30     {ERR_FUNC(UI_F_UI_DUP_ERROR_STRING), "UI_dup_error_string"},
31     {ERR_FUNC(UI_F_UI_DUP_INFO_STRING), "UI_dup_info_string"},
32     {ERR_FUNC(UI_F_UI_DUP_INPUT_BOOLEAN), "UI_dup_input_boolean"},
33     {ERR_FUNC(UI_F_UI_DUP_INPUT_STRING), "UI_dup_input_string"},
34     {ERR_FUNC(UI_F_UI_DUP_USER_DATA), "UI_dup_user_data"},
35     {ERR_FUNC(UI_F_UI_DUP_VERIFY_STRING), "UI_dup_verify_string"},
36     {ERR_FUNC(UI_F_UI_GET0_RESULT), "UI_get0_result"},
37     {ERR_FUNC(UI_F_UI_NEW_METHOD), "UI_new_method"},
38     {ERR_FUNC(UI_F_UI_PROCESS), "UI_process"},
39     {ERR_FUNC(UI_F_UI_SET_RESULT), "UI_set_result"},
40     {0, NULL}
41 };
42
43 static ERR_STRING_DATA UI_str_reasons[] = {
44     {ERR_REASON(UI_R_COMMON_OK_AND_CANCEL_CHARACTERS),
45      "common ok and cancel characters"},
46     {ERR_REASON(UI_R_INDEX_TOO_LARGE), "index too large"},
47     {ERR_REASON(UI_R_INDEX_TOO_SMALL), "index too small"},
48     {ERR_REASON(UI_R_NO_RESULT_BUFFER), "no result buffer"},
49     {ERR_REASON(UI_R_PROCESSING_ERROR), "processing error"},
50     {ERR_REASON(UI_R_RESULT_TOO_LARGE), "result too large"},
51     {ERR_REASON(UI_R_RESULT_TOO_SMALL), "result too small"},
52     {ERR_REASON(UI_R_SYSASSIGN_ERROR), "sys$assign error"},
53     {ERR_REASON(UI_R_SYSDASSGN_ERROR), "sys$dassgn error"},
54     {ERR_REASON(UI_R_SYSQIOW_ERROR), "sys$qiow error"},
55     {ERR_REASON(UI_R_UNKNOWN_CONTROL_COMMAND), "unknown control command"},
56     {ERR_REASON(UI_R_UNKNOWN_TTYGET_ERRNO_VALUE),
57      "unknown ttyget errno value"},
58     {ERR_REASON(UI_R_USER_DATA_DUPLICATION_UNSUPPORTED),
59      "user data duplication unsupported"},
60     {0, NULL}
61 };
62
63 #endif
64
65 int ERR_load_UI_strings(void)
66 {
67 #ifndef OPENSSL_NO_ERR
68
69     if (ERR_func_error_string(UI_str_functs[0].error) == NULL) {
70         ERR_load_strings(0, UI_str_functs);
71         ERR_load_strings(0, UI_str_reasons);
72     }
73 #endif
74     return 1;
75 }