summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-12 11:44:06 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-12 11:44:06 +0000
commit0229827c8b6f567c4c7a36945c966e8a676a1159 (patch)
tree4cc161a86e5f05736ff09f3520d0d3469447ce26 /include
parent24dbd1979108d3ca95aa4e86e56e5d6dd922b835 (diff)
* include/ruby/ruby.h (rb_event_hook_func_t): add argument names.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34575 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include')
-rw-r--r--include/ruby/ruby.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h
index ef58a7d8b0..75f0d71965 100644
--- a/include/ruby/ruby.h
+++ b/include/ruby/ruby.h
@@ -1419,7 +1419,7 @@ int ruby_native_thread_p(void);
#define RUBY_EVENT_COVERAGE 0x40000
typedef unsigned int rb_event_flag_t;
-typedef void (*rb_event_hook_func_t)(rb_event_flag_t, VALUE data, VALUE, ID, VALUE klass);
+typedef void (*rb_event_hook_func_t)(rb_event_flag_t evflag, VALUE data, VALUE self, ID mid, VALUE klass);
typedef struct rb_event_hook_struct {
rb_event_flag_t flag;