mirror of https://github.com/ethereum/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.
15 lines
425 B
15 lines
425 B
7 years ago
|
#if !defined(DUK_MODULE_DUKTAPE_H_INCLUDED)
|
||
|
#define DUK_MODULE_DUKTAPE_H_INCLUDED
|
||
|
|
||
|
#include "duktape.h"
|
||
|
|
||
|
/* Maximum length of CommonJS module identifier to resolve. Length includes
|
||
|
* both current module ID, requested (possibly relative) module ID, and a
|
||
|
* slash in between.
|
||
|
*/
|
||
|
#define DUK_COMMONJS_MODULE_ID_LIMIT 256
|
||
|
|
||
|
extern void duk_module_duktape_init(duk_context *ctx);
|
||
|
|
||
|
#endif /* DUK_MODULE_DUKTAPE_H_INCLUDED */
|