30 lines
775 B
C
Raw Normal View History

2019-01-08 21:02:11 +01:00
#if !defined(DUK_CONSOLE_H_INCLUDED)
#define DUK_CONSOLE_H_INCLUDED
#include "duktape.h"
2019-06-21 18:02:14 +02:00
#if defined(__cplusplus)
extern "C" {
#endif
2019-01-08 21:02:11 +01:00
/* Use a proxy wrapper to make undefined methods (console.foo()) no-ops. */
2019-06-21 18:02:14 +02:00
#define DUK_CONSOLE_PROXY_WRAPPER (1U << 0)
2019-01-08 21:02:11 +01:00
/* Flush output after every call. */
2019-06-21 18:02:14 +02:00
#define DUK_CONSOLE_FLUSH (1U << 1)
/* Send output to stdout only (default is mixed stdout/stderr). */
#define DUK_CONSOLE_STDOUT_ONLY (1U << 2)
2019-01-08 21:02:11 +01:00
2019-06-21 18:02:14 +02:00
/* Send output to stderr only (default is mixed stdout/stderr). */
#define DUK_CONSOLE_STDERR_ONLY (1U << 3)
/* Initialize the console system */
2019-01-08 21:02:11 +01:00
extern void duk_console_init(duk_context *ctx, duk_uint_t flags);
2019-06-21 18:02:14 +02:00
#if defined(__cplusplus)
}
#endif /* end 'extern "C"' wrapper */
2019-01-08 21:02:11 +01:00
#endif /* DUK_CONSOLE_H_INCLUDED */