1*4724848cSchristos /* 2*4724848cSchristos * Generated by util/mkerr.pl DO NOT EDIT 3*4724848cSchristos * Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved. 4*4724848cSchristos * 5*4724848cSchristos * Licensed under the OpenSSL license (the "License"). You may not use 6*4724848cSchristos * this file except in compliance with the License. You can obtain a copy 7*4724848cSchristos * in the file LICENSE in the source distribution or at 8*4724848cSchristos * https://www.openssl.org/source/license.html 9*4724848cSchristos */ 10*4724848cSchristos 11*4724848cSchristos #ifndef OSSL_INTERNAL_DSOERR_H 12*4724848cSchristos # define OSSL_INTERNAL_DSOERR_H 13*4724848cSchristos 14*4724848cSchristos # ifndef HEADER_SYMHACKS_H 15*4724848cSchristos # include <openssl/symhacks.h> 16*4724848cSchristos # endif 17*4724848cSchristos 18*4724848cSchristos # ifdef __cplusplus 19*4724848cSchristos extern "C" 20*4724848cSchristos # endif 21*4724848cSchristos int ERR_load_DSO_strings(void); 22*4724848cSchristos 23*4724848cSchristos /* 24*4724848cSchristos * DSO function codes. 25*4724848cSchristos */ 26*4724848cSchristos # define DSO_F_DLFCN_BIND_FUNC 100 27*4724848cSchristos # define DSO_F_DLFCN_LOAD 102 28*4724848cSchristos # define DSO_F_DLFCN_MERGER 130 29*4724848cSchristos # define DSO_F_DLFCN_NAME_CONVERTER 123 30*4724848cSchristos # define DSO_F_DLFCN_UNLOAD 103 31*4724848cSchristos # define DSO_F_DL_BIND_FUNC 104 32*4724848cSchristos # define DSO_F_DL_LOAD 106 33*4724848cSchristos # define DSO_F_DL_MERGER 131 34*4724848cSchristos # define DSO_F_DL_NAME_CONVERTER 124 35*4724848cSchristos # define DSO_F_DL_UNLOAD 107 36*4724848cSchristos # define DSO_F_DSO_BIND_FUNC 108 37*4724848cSchristos # define DSO_F_DSO_CONVERT_FILENAME 126 38*4724848cSchristos # define DSO_F_DSO_CTRL 110 39*4724848cSchristos # define DSO_F_DSO_FREE 111 40*4724848cSchristos # define DSO_F_DSO_GET_FILENAME 127 41*4724848cSchristos # define DSO_F_DSO_GLOBAL_LOOKUP 139 42*4724848cSchristos # define DSO_F_DSO_LOAD 112 43*4724848cSchristos # define DSO_F_DSO_MERGE 132 44*4724848cSchristos # define DSO_F_DSO_NEW_METHOD 113 45*4724848cSchristos # define DSO_F_DSO_PATHBYADDR 105 46*4724848cSchristos # define DSO_F_DSO_SET_FILENAME 129 47*4724848cSchristos # define DSO_F_DSO_UP_REF 114 48*4724848cSchristos # define DSO_F_VMS_BIND_SYM 115 49*4724848cSchristos # define DSO_F_VMS_LOAD 116 50*4724848cSchristos # define DSO_F_VMS_MERGER 133 51*4724848cSchristos # define DSO_F_VMS_UNLOAD 117 52*4724848cSchristos # define DSO_F_WIN32_BIND_FUNC 101 53*4724848cSchristos # define DSO_F_WIN32_GLOBALLOOKUP 142 54*4724848cSchristos # define DSO_F_WIN32_JOINER 135 55*4724848cSchristos # define DSO_F_WIN32_LOAD 120 56*4724848cSchristos # define DSO_F_WIN32_MERGER 134 57*4724848cSchristos # define DSO_F_WIN32_NAME_CONVERTER 125 58*4724848cSchristos # define DSO_F_WIN32_PATHBYADDR 109 59*4724848cSchristos # define DSO_F_WIN32_SPLITTER 136 60*4724848cSchristos # define DSO_F_WIN32_UNLOAD 121 61*4724848cSchristos 62*4724848cSchristos /* 63*4724848cSchristos * DSO reason codes. 64*4724848cSchristos */ 65*4724848cSchristos # define DSO_R_CTRL_FAILED 100 66*4724848cSchristos # define DSO_R_DSO_ALREADY_LOADED 110 67*4724848cSchristos # define DSO_R_EMPTY_FILE_STRUCTURE 113 68*4724848cSchristos # define DSO_R_FAILURE 114 69*4724848cSchristos # define DSO_R_FILENAME_TOO_BIG 101 70*4724848cSchristos # define DSO_R_FINISH_FAILED 102 71*4724848cSchristos # define DSO_R_INCORRECT_FILE_SYNTAX 115 72*4724848cSchristos # define DSO_R_LOAD_FAILED 103 73*4724848cSchristos # define DSO_R_NAME_TRANSLATION_FAILED 109 74*4724848cSchristos # define DSO_R_NO_FILENAME 111 75*4724848cSchristos # define DSO_R_NULL_HANDLE 104 76*4724848cSchristos # define DSO_R_SET_FILENAME_FAILED 112 77*4724848cSchristos # define DSO_R_STACK_ERROR 105 78*4724848cSchristos # define DSO_R_SYM_FAILURE 106 79*4724848cSchristos # define DSO_R_UNLOAD_FAILED 107 80*4724848cSchristos # define DSO_R_UNSUPPORTED 108 81*4724848cSchristos 82*4724848cSchristos #endif 83