diff options
author | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2007-12-18 22:16:58 +0000 |
---|---|---|
committer | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2007-12-18 22:16:58 +0000 |
commit | e331ea8e9d1016286d677ff42fe001524e762c5f (patch) | |
tree | 5c8a46e14dc3bacf2225ddf9a592af0b0ba168fd | |
parent | 36970357fdc022cbb3abeffcf180f8b0dfcfce08 (diff) | |
download | libapr-util-e331ea8e9d1016286d677ff42fe001524e762c5f.tar.gz |
Declare these properly as apr-UTIL's exports
git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@605342 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | include/apr_ssl.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/apr_ssl.h b/include/apr_ssl.h index ea1aa787..6acc28fd 100644 --- a/include/apr_ssl.h +++ b/include/apr_ssl.h @@ -310,7 +310,7 @@ APU_DECLARE(apr_status_t) apr_evp_factory_create(apr_evp_factory_t **newFactory, * @return APR_EINIT if initialisation unsuccessful. Returns * APR_ENOTIMPL if not supported. */ -APR_DECLARE(apr_status_t) apr_evp_crypt_init(apr_evp_factory_t *f, +APU_DECLARE(apr_status_t) apr_evp_crypt_init(apr_evp_factory_t *f, apr_evp_crypt_t **e, apr_evp_crypt_type_e type, apr_evp_crypt_key_e key, @@ -334,7 +334,7 @@ APR_DECLARE(apr_status_t) apr_evp_crypt_init(apr_evp_factory_t *f, * @return APR_EGENERAL if an error occurred. Returns APR_ENOTIMPL if * not supported. */ -APR_DECLARE(apr_status_t) apr_evp_crypt(apr_evp_crypt_t *evp, +APU_DECLARE(apr_status_t) apr_evp_crypt(apr_evp_crypt_t *evp, unsigned char **out, apr_size_t *outlen, const unsigned char *in, @@ -356,7 +356,7 @@ APR_DECLARE(apr_status_t) apr_evp_crypt(apr_evp_crypt_t *evp, * @return APR_EGENERAL if an error occurred. Returns APR_ENOTIMPL if * not supported. */ -APR_DECLARE(apr_status_t) apr_evp_crypt_finish(apr_evp_crypt_t *evp, +APU_DECLARE(apr_status_t) apr_evp_crypt_finish(apr_evp_crypt_t *evp, unsigned char *out, apr_size_t *outlen); @@ -367,7 +367,7 @@ APR_DECLARE(apr_status_t) apr_evp_crypt_finish(apr_evp_crypt_t *evp, * @param evp The evp context to use. * @return Returns APR_ENOTIMPL if not supported. */ -APR_DECLARE(apr_status_t) apr_evp_crypt_cleanup(apr_evp_crypt_t *e); +APU_DECLARE(apr_status_t) apr_evp_crypt_cleanup(apr_evp_crypt_t *e); /** * @brief Clean encryption / decryption factory. @@ -375,7 +375,7 @@ APR_DECLARE(apr_status_t) apr_evp_crypt_cleanup(apr_evp_crypt_t *e); * @param f The factory to use. * @return Returns APR_ENOTIMPL if not supported. */ -APR_DECLARE(apr_status_t) apr_evp_factory_cleanup(apr_evp_factory_t *f); +APU_DECLARE(apr_status_t) apr_evp_factory_cleanup(apr_evp_factory_t *f); /** @} */ |