Janus Duktape plugin extra hooks (headers) More...
#include "duktape-deps/duktape.h"
Go to the source code of this file.
Functions | |
void | janus_duktape_register_extra_functions (duk_context *ctx) |
Method to register extra JavaScript functions in the C code. More... | |
Janus Duktape plugin extra hooks (headers)
More specifically, the Janus Duktape plugin will always invoke the janus_duktape_register_extra_functions() method when initializing. This means that all developers will need to do to register a new function is adding new duk_push_c_function
calls to register their own functions there, and they'll be added to the stack.
void janus_duktape_register_extra_functions | ( | duk_context * | ctx | ) |
Method to register extra JavaScript functions in the C code.
[in] | ctx | The Duktape context to register the functions on |