mirror of https://github.com/arendst/Tasmota.git
22 lines
581 B
C
22 lines
581 B
C
#include "be_constobj.h"
|
|
|
|
static be_define_const_map_slots(m_libintrospect_map) {
|
|
{ be_const_key(get, -1), be_const_func(m_findmember) },
|
|
{ be_const_key(toptr, 3), be_const_func(m_toptr) },
|
|
{ be_const_key(set, -1), be_const_func(m_setmember) },
|
|
{ be_const_key(fromptr, -1), be_const_func(m_fromptr) },
|
|
{ be_const_key(members, 1), be_const_func(m_attrlist) },
|
|
};
|
|
|
|
static be_define_const_map(
|
|
m_libintrospect_map,
|
|
5
|
|
);
|
|
|
|
static be_define_const_module(
|
|
m_libintrospect,
|
|
"introspect"
|
|
);
|
|
|
|
BE_EXPORT_VARIABLE be_define_const_native_module(introspect);
|