mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
274 B
9 lines
274 B
#if !defined(DUK_MODULE_NODE_H_INCLUDED)
|
|
#define DUK_MODULE_NODE_H_INCLUDED
|
|
|
|
#include "duktape.h"
|
|
|
|
extern duk_ret_t duk_module_node_peval_main(duk_context *ctx, const char *path);
|
|
extern void duk_module_node_init(duk_context *ctx);
|
|
|
|
#endif /* DUK_MODULE_NODE_H_INCLUDED */
|
|
|