622c9f780c
This reverts commit 38e7a35910.
18 lines
313 B
C
18 lines
313 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "service_manifest.h"
|
|
|
|
typedef void* Service;
|
|
|
|
const ServiceManifest* tt_service_get_manifest(Service service);
|
|
|
|
void tt_service_set_data(Service service, void* value);
|
|
void* _Nullable tt_service_get_data(Service service);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |