summaryrefslogtreecommitdiff
path: root/shared-module/msgpack/__init__.h
diff options
context:
space:
mode:
authorBernhard Boser <boser@berkeley.edu>2020-12-07 15:16:16 -0800
committerBernhard Boser <boser@berkeley.edu>2020-12-07 15:40:02 -0800
commitb5b6b6d0f2fe669e0304521d663b16388c63b15e (patch)
tree2c9a965b97bfaf4c6858d21195281eb904e8beed /shared-module/msgpack/__init__.h
parent608c98501bb90e02a480b2d84032a46f9a4d0737 (diff)
add ExtType, update doc, add a test
Diffstat (limited to 'shared-module/msgpack/__init__.h')
-rw-r--r--shared-module/msgpack/__init__.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/shared-module/msgpack/__init__.h b/shared-module/msgpack/__init__.h
index 0a5e7852a..88b4809f9 100644
--- a/shared-module/msgpack/__init__.h
+++ b/shared-module/msgpack/__init__.h
@@ -28,7 +28,7 @@
#include "py/stream.h"
-void common_hal_msgpack_pack(mp_obj_t obj, mp_obj_t stream_obj);
-mp_obj_t common_hal_msgpack_unpack(mp_obj_t stream_obj);
+void common_hal_msgpack_pack(mp_obj_t obj, mp_obj_t stream_obj, mp_obj_t default_handler);
+mp_obj_t common_hal_msgpack_unpack(mp_obj_t stream_obj, mp_obj_t ext_hook, bool use_list);
#endif