diff options
author | Yukihiro Matsumoto <[email protected]> | 1997-12-09 17:54:56 +0900 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2019-08-17 22:09:33 +0900 |
commit | 66541bbb3630a5c512f8012c52ae777ab83beba5 (patch) | |
tree | be1431b56b485de6cb1da065bb2161551872820d /win32/ruby.def | |
parent | fb0fe24512d1796f794306768ddac37566e9a209 (diff) |
version 1.0-971209v1_0_971209
https://cache.ruby-lang.org/pub/ruby/1.0/ruby-1.0-971209.tar.gz
Tue Dec 9 17:54:56 1997 Yukihiro Matsumoto <[email protected]>
* version 1.0-971209
* sample/ruby-mode.el (ruby-expr-beg): forgot to handle modifiers.
* parse.y (tokadd): token buffer overrun.
Diffstat (limited to 'win32/ruby.def')
-rw-r--r-- | win32/ruby.def | 53 |
1 files changed, 51 insertions, 2 deletions
diff --git a/win32/ruby.def b/win32/ruby.def index 1ec577d2a8..1c9e589849 100644 --- a/win32/ruby.def +++ b/win32/ruby.def @@ -1,6 +1,55 @@ +LIBRARY ruby.dll
+CODE LOADONCALL
+DATA LOADONCALL
DESCRIPTION 'win32 ruby.dll'
-
EXPORTS
+
+;missing/nt.c
+ NtInitialize
+;eval.c
ruby_init
- ruby_run
ruby_options
+ ruby_run
+;class.c
+ ;;rb_define_module_function
+ ;;rb_define_const
+ ;;rb_define_singleton_method
+ ;;rb_define_alias
+ rb_define_alias
+ rb_define_attr
+ rb_define_class
+ rb_define_class_id
+ rb_define_class_under
+ rb_define_global_function
+ rb_define_method
+ rb_define_method_id
+ rb_define_module
+ rb_define_module_function
+ rb_define_module_id
+ rb_define_module_under
+ rb_define_private_method
+ rb_define_singleton_method
+ rb_scan_args
+;variable.c
+ rb_define_const
+ rb_define_hooked_variable
+ rb_define_global_const
+ rb_define_readonly_variable
+ rb_define_variable
+ rb_define_virtual_variable
+;string.c
+ str_new
+ str_new2
+ str_new3
+ str_new4
+;numeric.c
+ num2int
+
+;error.c
+ rb_check_type
+ Fatal
+
+;gc.c
+ xmalloc
+ xcalloc
+
|