mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-16 01:02:36 +03:00
12 lines
281 B
C
12 lines
281 B
C
/* DO NOT USE, DODGY BIT FOR VINCE */
|
|
|
|
#ifndef DUKKY_H
|
|
#define DUKKY_H
|
|
|
|
duk_ret_t dukky_create_object(duk_context *ctx, const char *name, int args);
|
|
duk_bool_t dukky_push_node_stacked(duk_context *ctx);
|
|
duk_bool_t dukky_push_node(duk_context *ctx, struct dom_node *node);
|
|
|
|
|
|
#endif
|