forked from KolibriOS/kolibrios
91ae0dee0b
git-svn-id: svn://kolibrios.org@8456 a494cfbc-eb01-0410-851d-a64ba20cac60
22 lines
651 B
C
Executable File
22 lines
651 B
C
Executable File
#ifndef js_builtin_h
|
|
#define js_builtin_h
|
|
|
|
void jsB_init(js_State *J);
|
|
void jsB_initobject(js_State *J);
|
|
void jsB_initarray(js_State *J);
|
|
void jsB_initfunction(js_State *J);
|
|
void jsB_initboolean(js_State *J);
|
|
void jsB_initnumber(js_State *J);
|
|
void jsB_initstring(js_State *J);
|
|
void jsB_initregexp(js_State *J);
|
|
void jsB_initerror(js_State *J);
|
|
void jsB_initmath(js_State *J);
|
|
void jsB_initjson(js_State *J);
|
|
void jsB_initdate(js_State *J);
|
|
|
|
void jsB_propf(js_State *J, const char *name, js_CFunction cfun, int n);
|
|
void jsB_propn(js_State *J, const char *name, double number);
|
|
void jsB_props(js_State *J, const char *name, const char *string);
|
|
|
|
#endif
|