mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-29 00:09:19 +03:00
19 lines
318 B
C
19 lines
318 B
C
#pragma once
|
|
|
|
#include <furi.h>
|
|
#include <mjs_core_public.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
bool js_delay_with_flags(struct mjs* mjs, uint32_t time);
|
|
|
|
void js_flags_set(struct mjs* mjs, uint32_t flags);
|
|
|
|
uint32_t js_flags_wait(struct mjs* mjs, uint32_t flags, uint32_t timeout);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|