diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-08-03 00:31:02 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-08-03 00:31:02 +0000 |
commit | 042e5013a3bc42a3637aa1646e9fc002436b852f (patch) | |
tree | 3cf356117c517f93cf85124578415e30a18ca0de /include/ruby/intern.h | |
parent | ccd5c3ddfc69cd007aa807b1fe3c84f06438a01f (diff) |
struct.c: rb_struct_define_under
* struct.c (rb_struct_define_under): new function to define Struct
under the given namespace, not under Struct. [Feature #8264]
* ext/etc/etc.c: use rb_struct_define_under.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42348 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/intern.h')
-rw-r--r-- | include/ruby/intern.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ruby/intern.h b/include/ruby/intern.h index 02213c9072..9f71f46707 100644 --- a/include/ruby/intern.h +++ b/include/ruby/intern.h @@ -837,6 +837,7 @@ VALUE rb_str_ellipsize(VALUE, long); /* struct.c */ VALUE rb_struct_new(VALUE, ...); VALUE rb_struct_define(const char*, ...); +VALUE rb_struct_define_under(VALUE, const char*, ...); VALUE rb_struct_alloc(VALUE, VALUE); VALUE rb_struct_initialize(VALUE, VALUE); VALUE rb_struct_aref(VALUE, VALUE); |