summaryrefslogtreecommitdiffstats
path: root/crypto/bio/bio.h
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-04-19 16:30:06 +0000
committerUlf Möller <ulf@openssl.org>1999-04-19 16:30:06 +0000
commit0ae645db10bdd05aa66ded0cb68048a860d5ea5d (patch)
tree51a053f92ddf58ddd884cc10d2e3ea454fa54af5 /crypto/bio/bio.h
parent434c5dd37caacbd2436eaf8f32f4be5b9e769ce4 (diff)
Clean up prototypes (prepare for removing NOPROTO).
Diffstat (limited to 'crypto/bio/bio.h')
-rw-r--r--crypto/bio/bio.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/bio/bio.h b/crypto/bio/bio.h
index f83b3e2f24..be1a243730 100644
--- a/crypto/bio/bio.h
+++ b/crypto/bio/bio.h
@@ -446,10 +446,11 @@ int BIO_read_filename(BIO *b,const char *name);
#ifndef NOPROTO
-int BIO_get_ex_num(BIO *bio);
+/* These two aren't currently implemented */
+/* int BIO_get_ex_num(BIO *bio); */
+/* void BIO_set_ex_free_func(BIO *bio,int idx,void (*cb)()); */
int BIO_set_ex_data(BIO *bio,int idx,char *data);
char *BIO_get_ex_data(BIO *bio,int idx);
-void BIO_set_ex_free_func(BIO *bio,int idx,void (*cb)());
int BIO_get_ex_new_index(long argl, char *argp, int (*new_func)(),
int (*dup_func)(), void (*free_func)());