fix: Setup config API on minimial boot env

Summary:

Test Plan:
This commit is contained in:
icex2 2024-08-15 13:24:43 +02:00
parent b031d40d2d
commit 20e7cdaa31

View File

@ -4,6 +4,7 @@
#include <stdio.h>
#include "core/config-property-node.h"
#include "core/property-mxml.h"
#include "core/property-node-mxml.h"
#include "core/thread-crt.h"
@ -90,6 +91,8 @@ void core_boot(const char *name)
core_property_mxml_core_api_set();
core_property_node_mxml_core_api_set();
core_config_property_node_core_api_set();
}
void core_boot_dll(const char *name)
@ -102,4 +105,6 @@ void core_boot_dll(const char *name)
core_property_mxml_core_api_set();
core_property_node_mxml_core_api_set();
core_config_property_node_core_api_set();
}