mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 12:42:30 +04:00
17 lines
402 B
C
17 lines
402 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
typedef struct JsThread JsThread;
|
||
|
|
|
||
|
|
typedef enum {
|
||
|
|
JsThreadEventDone,
|
||
|
|
JsThreadEventError,
|
||
|
|
JsThreadEventPrint,
|
||
|
|
JsThreadEventErrorTrace,
|
||
|
|
} JsThreadEvent;
|
||
|
|
|
||
|
|
typedef void (*JsThreadCallback)(JsThreadEvent event, const char* msg, void* context);
|
||
|
|
|
||
|
|
JsThread* js_thread_run(const char* script_path, JsThreadCallback callback, void* context);
|
||
|
|
|
||
|
|
void js_thread_stop(JsThread* worker);
|