| 1301 | int length, int magic, void *opaque); |
| 1302 | |
| 1303 | static inline JSValue JS_NewCFunction(JSContext *ctx, JSCFunction *func, |
| 1304 | const char *name, int length) |
| 1305 | { |
| 1306 | return JS_NewCFunction2(ctx, func, name, length, JS_CFUNC_generic, 0); |
| 1307 | } |
| 1308 | |
| 1309 | static inline JSValue JS_NewCFunctionMagic(JSContext *ctx, JSCFunctionMagic *func, |
| 1310 | const char *name, int length, |
no outgoing calls