Tactility/tactility/src/tactility.h
Ken Van Hoeylandt e2209ccba8
Move app/service code from tactility-core to tactility (#14)
* Move app/service code from tactility-core to tactility

* fix formatting

* updated dev docs
2024-01-20 15:41:01 +01:00

20 lines
296 B
C

#pragma once
#include "app_manifest.h"
#include "service_manifest.h"
#ifdef __cplusplus
extern "C" {
#endif
TT_UNUSED void tt_init(
const AppManifest* const* apps,
size_t apps_count,
const ServiceManifest* const* services,
size_t services_count
);
#ifdef __cplusplus
}
#endif