mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
9f2a4b378f
* String payload * Verify ENS Names * Update status-protocol-go
18 lines
387 B
C
Vendored
18 lines
387 B
C
Vendored
#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 */
|