mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
* Move app/service code from tactility-core to tactility * fix formatting * updated dev docs
20 lines
296 B
C
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
|