10 lines
198 B
C
10 lines
198 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);
|
|
|
|
#endif |