diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-02-08 13:56:15 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-02-08 13:56:15 +0900 |
| commit | d8a5f1205338f8ed664745ef74c825b74b9bb081 (patch) | |
| tree | bca1d9a5aa034ccaa75b8757e0f3f86d53b5d19d /include/mruby.h | |
| parent | b35893ee139f0fdd61dad4eae4aa071937f4ea66 (diff) | |
| download | mruby-d8a5f1205338f8ed664745ef74c825b74b9bb081.tar.gz mruby-d8a5f1205338f8ed664745ef74c825b74b9bb081.zip | |
forget to add function prototypes
Diffstat (limited to 'include/mruby.h')
| -rw-r--r-- | include/mruby.h | 2 |
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); |
