1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* README.EXT, README.EXT.ja: use "sval" for the third argument

name of Data_Wrap_Struct().
  Suggested by @satoh_fumiyasu. Thanks!!!


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36180 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kou 2012-06-22 09:52:32 +00:00
parent c4bc9b5758
commit 7b036a8ea7
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
Fri Jun 22 18:48:51 2012 Kouhei Sutou <kou@cozmixng.org>
* README.EXT, README.EXT.ja: use "sval" for the third argument
name of Data_Wrap_Struct().
Suggested by @satoh_fumiyasu. Thanks!!!
Fri Jun 22 18:04:26 2012 Koichi Sasada <ko1@atdot.net>
* iseq.c, vm_eval.c: set th->base_block properly.

View file

@ -562,7 +562,7 @@ The prototypes of the getter and setter functions are as follows:
To wrap and objectify a C pointer as a Ruby object (so called
DATA), use Data_Wrap_Struct().
Data_Wrap_Struct(klass, mark, free, ptr)
Data_Wrap_Struct(klass, mark, free, sval)
Data_Wrap_Struct() returns a created DATA object. The klass argument
is the class for the DATA object. The mark argument is the function

View file

@ -623,7 +623,7 @@ RubyオブジェクトにCの構造体(へのポインタ)をくるむことでR
Dataオブジェクトを生成して構造体をRubyオブジェクトにカプセル
化するためには,以下のマクロを使います.
Data_Wrap_Struct(klass, mark, free, ptr)
Data_Wrap_Struct(klass, mark, free, sval)
このマクロの戻り値は生成されたDataオブジェクトです