mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-18 13:38:12 +00:00
582e1318c4
[no changelog]
14 lines
433 B
C
14 lines
433 B
C
#include "librust_qstr.h"
|
|
|
|
mp_obj_t protobuf_type_for_name(mp_obj_t name);
|
|
mp_obj_t protobuf_type_for_wire(mp_obj_t wire_id);
|
|
mp_obj_t protobuf_decode(mp_obj_t buf, mp_obj_t def,
|
|
mp_obj_t enable_experimental);
|
|
mp_obj_t protobuf_len(mp_obj_t obj);
|
|
mp_obj_t protobuf_encode(mp_obj_t buf, mp_obj_t obj);
|
|
|
|
#ifdef TREZOR_EMULATOR
|
|
mp_obj_t protobuf_debug_msg_type();
|
|
mp_obj_t protobuf_debug_msg_def_type();
|
|
#endif
|