Tasmota/lib/libesp32/Berry/generate/be_fixed_tasmota_path.h

19 lines
401 B
C
Raw Normal View History

2021-07-18 21:39:59 +01:00
#include "be_constobj.h"
static be_define_const_map_slots(m_libpath_map) {
{ be_const_key(exists, -1), be_const_func(m_path_exists) },
2021-09-15 21:25:36 +01:00
{ be_const_key(last_modified, 0), be_const_func(m_path_last_modified) },
2021-07-18 21:39:59 +01:00
};
static be_define_const_map(
m_libpath_map,
2021-09-15 21:25:36 +01:00
2
2021-07-18 21:39:59 +01:00
);
static be_define_const_module(
m_libpath,
"path"
);
BE_EXPORT_VARIABLE be_define_const_native_module(path, NULL);