forked from KolibriOS/kolibrios
kosjs: replace libmujs.a with sources; if argc = 0, see "usage"
git-svn-id: svn://kolibrios.org@8456 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
15
programs/develop/kosjs/libmujs/jsrun.h
Executable file
15
programs/develop/kosjs/libmujs/jsrun.h
Executable file
@@ -0,0 +1,15 @@
|
||||
#ifndef js_run_h
|
||||
#define js_run_h
|
||||
|
||||
js_Environment *jsR_newenvironment(js_State *J, js_Object *variables, js_Environment *outer);
|
||||
|
||||
struct js_Environment
|
||||
{
|
||||
js_Environment *outer;
|
||||
js_Object *variables;
|
||||
|
||||
js_Environment *gcnext;
|
||||
int gcmark;
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user