summaryrefslogtreecommitdiffhomepage
path: root/include/mruby.h
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-02-08 13:56:15 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2014-02-08 13:56:15 +0900
commitd8a5f1205338f8ed664745ef74c825b74b9bb081 (patch)
treebca1d9a5aa034ccaa75b8757e0f3f86d53b5d19d /include/mruby.h
parentb35893ee139f0fdd61dad4eae4aa071937f4ea66 (diff)
downloadmruby-d8a5f1205338f8ed664745ef74c825b74b9bb081.tar.gz
mruby-d8a5f1205338f8ed664745ef74c825b74b9bb081.zip
forget to add function prototypes
Diffstat (limited to 'include/mruby.h')
-rw-r--r--include/mruby.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mruby.h b/include/mruby.h
index 4bd6a3706..61bb80ea3 100644
--- a/include/mruby.h
+++ b/include/mruby.h
@@ -186,6 +186,8 @@ struct RClass * mrb_module_new(mrb_state *mrb);
mrb_bool mrb_class_defined(mrb_state *mrb, const char *name);
struct RClass * mrb_class_get(mrb_state *mrb, const char *name);
struct RClass * mrb_class_get_under(mrb_state *mrb, struct RClass *outer, const char *name);
+struct RClass * mrb_module_get(mrb_state *mrb, const char *name);
+struct RClass * mrb_module_get_under(mrb_state *mrb, struct RClass *outer, const char *name);
mrb_value mrb_obj_dup(mrb_state *mrb, mrb_value obj);
mrb_value mrb_check_to_integer(mrb_state *mrb, mrb_value val, const char *method);