diff options
author | Damien George <damien.p.george@gmail.com> | 2014-08-15 23:47:59 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-08-15 23:47:59 +0100 |
commit | e6c0dff9671c493e9a13a22a1b8902dee88da064 (patch) | |
tree | 5f703c1264160f9c752f8ecb0e0683ddf7e0e622 /py/runtime.h | |
parent | a5190a7dac7a73e676d6d649035f846ea92d2d2d (diff) |
py: Viper can now store to global.
Diffstat (limited to 'py/runtime.h')
-rw-r--r-- | py/runtime.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/py/runtime.h b/py/runtime.h index 2feb24de9..f908d9d26 100644 --- a/py/runtime.h +++ b/py/runtime.h @@ -115,6 +115,9 @@ void mp_import_all(mp_obj_t module); // Raise NotImplementedError with given message NORETURN void mp_not_implemented(const char *msg); +mp_uint_t mp_convert_obj_to_native(mp_obj_t obj, mp_uint_t type); +mp_obj_t mp_convert_native_to_obj(mp_uint_t val, mp_uint_t type); + extern struct _mp_obj_list_t mp_sys_path_obj; extern struct _mp_obj_list_t mp_sys_argv_obj; #define mp_sys_path ((mp_obj_t)&mp_sys_path_obj) |