diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-11-17 17:55:23 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-11-17 17:55:23 +0900 |
| commit | 9980bc20bb9a2149c975dd25b4eb2cab664f99d0 (patch) | |
| tree | 4e459e553b371456ada48988a2b9e71ca07578dd /include/mruby.h | |
| parent | 70c98667512b9301e577aafc912a35208ad471c9 (diff) | |
| parent | 9a06cfa9d8511377523072c823b1c269d092cb25 (diff) | |
| download | mruby-9980bc20bb9a2149c975dd25b4eb2cab664f99d0.tar.gz mruby-9980bc20bb9a2149c975dd25b4eb2cab664f99d0.zip | |
Merge pull request #2636 from ksss/mrb_notimplement
Implement C API mrb_notimplement
Diffstat (limited to 'include/mruby.h')
| -rw-r--r-- | include/mruby.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mruby.h b/include/mruby.h index dd7cdab08..fb3e5f30d 100644 --- a/include/mruby.h +++ b/include/mruby.h @@ -221,6 +221,7 @@ MRB_API struct RClass * mrb_class_get(mrb_state *mrb, const char *name); MRB_API struct RClass * mrb_class_get_under(mrb_state *mrb, struct RClass *outer, const char *name); MRB_API struct RClass * mrb_module_get(mrb_state *mrb, const char *name); MRB_API struct RClass * mrb_module_get_under(mrb_state *mrb, struct RClass *outer, const char *name); +MRB_API mrb_value mrb_notimplement(mrb_state*, mrb_value); MRB_API mrb_value mrb_obj_dup(mrb_state *mrb, mrb_value obj); MRB_API mrb_value mrb_check_to_integer(mrb_state *mrb, mrb_value val, const char *method); |
