mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 21:13:16 +00:00
18 lines
212 B
C
18 lines
212 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void dev_info_svc_start();
|
|
|
|
void dev_info_svc_stop();
|
|
|
|
bool dev_info_svc_is_started();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|