Exemple #1
0
 private static extern void rb_define_private_method(VALUE klass, string name, RubyValueFuncM1 func, int argc);
Exemple #2
0
 public static void rb_define_private_method(VALUE klass, string name, RubyValueFuncM1 func)
 {
     MethodDelegates.Add(func);
     rb_define_private_method(klass, name, func, -1);
 }
Exemple #3
0
 public static void rb_define_private_method(VALUE klass, string name, RubyValueFuncM1 func)
 {
     MethodDelegates.Add(func);
     rb_define_private_method(klass, name, func, -1);
 }
Exemple #4
0
 private static extern void rb_define_private_method(VALUE klass, string name, RubyValueFuncM1 func, int argc);