17 lines
337 B
C
17 lines
337 B
C
#ifndef SCRIPT_H
|
|
#define SCRIPT_H
|
|
|
|
#include "quickjs.h"
|
|
|
|
extern JSValue on_exception;
|
|
|
|
void script_startup();
|
|
void script_stop();
|
|
|
|
void script_evalf(const char *format, ...);
|
|
JSValue script_eval(JSContext *js, const char *file, const char *script);
|
|
void uncaught_exception(JSContext *js, JSValue v);
|
|
extern JSContext *global_js;
|
|
|
|
#endif
|