File indexing completed on 2025-01-18 10:05:51
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef OPENSSL_SYMHACKS_H
0011 # define OPENSSL_SYMHACKS_H
0012 # pragma once
0013
0014 # include <openssl/macros.h>
0015 # ifndef OPENSSL_NO_DEPRECATED_3_0
0016 # define HEADER_SYMHACKS_H
0017 # endif
0018
0019 # include <openssl/e_os2.h>
0020
0021
0022 # if defined(OPENSSL_SYS_VMS)
0023 # undef ERR_load_CRYPTO_strings
0024 # define ERR_load_CRYPTO_strings ERR_load_CRYPTOlib_strings
0025 # undef OCSP_crlID_new
0026 # define OCSP_crlID_new OCSP_crlID2_new
0027
0028 # undef d2i_ECPARAMETERS
0029 # define d2i_ECPARAMETERS d2i_UC_ECPARAMETERS
0030 # undef i2d_ECPARAMETERS
0031 # define i2d_ECPARAMETERS i2d_UC_ECPARAMETERS
0032 # undef d2i_ECPKPARAMETERS
0033 # define d2i_ECPKPARAMETERS d2i_UC_ECPKPARAMETERS
0034 # undef i2d_ECPKPARAMETERS
0035 # define i2d_ECPKPARAMETERS i2d_UC_ECPKPARAMETERS
0036
0037 # endif
0038
0039 #endif