diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-06-28 03:03:47 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-07-09 19:28:24 +0300 |
commit | 8215847b4d3bbbf859893db44f6de8a9fdea9f35 (patch) | |
tree | 7d8bbf9f219e5ccbda0693b03f335b58d6bd0cf8 /py/builtin.h | |
parent | 42b6419056a67a0ea8e28eaf27e51f53bc65eec2 (diff) |
moductypes: Foreign data interface module, roughly based on ctype ideas.
But much smaller and memory-efficient. Uses Python builtin data structures
(dict, tuple, int) to describe structure layout.
Diffstat (limited to 'py/builtin.h')
-rw-r--r-- | py/builtin.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/py/builtin.h b/py/builtin.h index 2e4d2023d..361cef604 100644 --- a/py/builtin.h +++ b/py/builtin.h @@ -80,3 +80,6 @@ extern const mp_obj_module_t mp_module_micropython; extern const mp_obj_module_t mp_module_struct; extern const mp_obj_module_t mp_module_sys; extern const mp_obj_module_t mp_module_gc; + +// extmod modules +extern const mp_obj_module_t mp_module_uctypes; |