From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/ruby/ext/openssl/ruby_missing.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 jni/ruby/ext/openssl/ruby_missing.h (limited to 'jni/ruby/ext/openssl/ruby_missing.h') diff --git a/jni/ruby/ext/openssl/ruby_missing.h b/jni/ruby/ext/openssl/ruby_missing.h new file mode 100644 index 0000000..a36c338 --- /dev/null +++ b/jni/ruby/ext/openssl/ruby_missing.h @@ -0,0 +1,28 @@ +/* + * $Id: ruby_missing.h 33843 2011-11-26 01:49:36Z emboss $ + * 'OpenSSL for Ruby' project + * Copyright (C) 2001-2003 Michal Rokos + * All rights reserved. + */ +/* + * This program is licenced under the same licence as Ruby. + * (See the file 'LICENCE'.) + */ +#if !defined(_OSSL_RUBY_MISSING_H_) +#define _OSSL_RUBY_MISSING_H_ + +#define rb_define_copy_func(klass, func) \ + rb_define_method((klass), "initialize_copy", (func), 1) + + +#ifndef GetReadFile +#define FPTR_TO_FD(fptr) ((fptr)->fd) +#else +#define FPTR_TO_FD(fptr) (fileno(GetReadFile(fptr))) +#endif + +#ifndef HAVE_RB_IO_T +#define rb_io_t OpenFile +#endif + +#endif /* _OSSL_RUBY_MISSING_H_ */ -- cgit v1.2.3