11 lines
281 B
C
11 lines
281 B
C
#ifndef QJS_ACTOR_H
|
|
#define QJS_ACTOR_H
|
|
|
|
#include "cell.h"
|
|
|
|
JSValue js_actor_use(JSContext *js);
|
|
cell_rt *js2actor(JSContext *js, JSValue v);
|
|
JSValue actor2js(JSContext *js, cell_rt *actor);
|
|
JSValue js_actor_set_symbol(JSContext *js, JSValue self, int argc, JSValue *argv);
|
|
|
|
#endif |