diff options
Diffstat (limited to 'system/include/emscripten.h')
-rw-r--r-- | system/include/emscripten.h | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/system/include/emscripten.h b/system/include/emscripten.h index 5f3689c9..4d321b2c 100644 --- a/system/include/emscripten.h +++ b/system/include/emscripten.h @@ -7,7 +7,23 @@ * http://emscripten.org */ -// Interface to the underlying JS engine. This function will -// eval() the given script. +#ifdef __cplusplus +extern "C" { +#endif + +/* + * Interface to the underlying JS engine. This function will + * eval() the given script. + */ extern void emscripten_run_script(const char *script); +/* + * This macro-looking function will cause Emscripten to + * generate a comment in the generated code. + */ +extern void EMSCRIPTEN_COMMENT(const char *text); + +#ifdef __cplusplus +} +#endif + |