forked from mirror/go-ethereum
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.
17 lines
387 B
17 lines
387 B
#if !defined(DUK_MODULE_NODE_H_INCLUDED)
|
|
#define DUK_MODULE_NODE_H_INCLUDED
|
|
|
|
#include "duktape.h"
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern duk_ret_t duk_module_node_peval_main(duk_context *ctx, const char *path);
|
|
extern void duk_module_node_init(duk_context *ctx);
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif /* end 'extern "C"' wrapper */
|
|
|
|
#endif /* DUK_MODULE_NODE_H_INCLUDED */
|
|
|