// SPDX-License-Identifier: MIT #pragma once #include #include "list.h" #include "entity.h" /* Get the entity state from the server. */ short ha_get_entity_state(const char* id, struct entity_state* st); /* Update the server-side entity state. */ short ha_set_entity_state(const char* id, struct entity_state* st); short ha_get_entities(list_t *ents); short ha_test_prefs();