diff options
| author | Damien George <damien.p.george@gmail.com> | 2016-01-31 22:24:16 +0000 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2016-04-13 16:07:47 +0100 |
| commit | 0a2e9650f5383bc1190d6b27a3d923e313c3d879 (patch) | |
| tree | cf8cf4d9e9c69c1d07ef65cf926c47763df72ef3 /py/frozenmod.h | |
| parent | 0699c6bf9e7a1754002948063390b68590fc3e96 (diff) | |
py: Add ability to have frozen persistent bytecode from .mpy files.
The config variable MICROPY_MODULE_FROZEN is now made of two separate
parts: MICROPY_MODULE_FROZEN_STR and MICROPY_MODULE_FROZEN_MPY. This
allows to have none, either or both of frozen strings and frozen mpy
files (aka frozen bytecode).
Diffstat (limited to 'py/frozenmod.h')
| -rw-r--r-- | py/frozenmod.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/py/frozenmod.h b/py/frozenmod.h index 67caced14..a1638d229 100644 --- a/py/frozenmod.h +++ b/py/frozenmod.h @@ -24,4 +24,10 @@ * THE SOFTWARE. */ -mp_lexer_t *mp_find_frozen_module(const char *str, int len); +enum { + MP_FROZEN_NONE, + MP_FROZEN_STR, + MP_FROZEN_MPY, +}; + +int mp_find_frozen_module(const char *str, size_t len, void **data); |
