From 5da55dfcb480ab2c3a5c2162ee004b155c198099 Mon Sep 17 00:00:00 2001 From: ko1 Date: Thu, 29 Aug 2013 09:12:25 +0000 Subject: * struct.c (rb_struct_define_without_accessor_under): added. This function is similar to rb_define_class_under() against rb_define_class(). * include/ruby/intern.h: add a declaration of this function. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42725 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/intern.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include') diff --git a/include/ruby/intern.h b/include/ruby/intern.h index e8821acda4..5581c05925 100644 --- a/include/ruby/intern.h +++ b/include/ruby/intern.h @@ -848,6 +848,8 @@ VALUE rb_struct_s_members(VALUE); VALUE rb_struct_members(VALUE); VALUE rb_struct_alloc_noinit(VALUE); VALUE rb_struct_define_without_accessor(const char *, VALUE, rb_alloc_func_t, ...); +VALUE rb_struct_define_without_accessor_under(VALUE outer, const char *class_name, VALUE super, rb_alloc_func_t alloc, ...); + /* thread.c */ typedef void rb_unblock_function_t(void *); typedef VALUE rb_blocking_function_t(void *); -- cgit v1.2.3