summaryrefslogtreecommitdiff
path: root/jni/ruby/ext/openssl/ruby_missing.h
diff options
context:
space:
mode:
authorJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-16 18:49:26 +0900
committerJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-30 00:39:06 +0900
commitfcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch)
tree64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/ext/openssl/ruby_missing.h
Fresh start
Diffstat (limited to 'jni/ruby/ext/openssl/ruby_missing.h')
-rw-r--r--jni/ruby/ext/openssl/ruby_missing.h28
1 files changed, 28 insertions, 0 deletions
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 <m.rokos@sh.cvut.cz>
+ * 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_ */