summaryrefslogtreecommitdiff
path: root/content/content_protected.h
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2019-05-05 15:37:56 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2019-05-05 16:00:03 +0100
commitf3892c98fdc734a0abca136ab712c94246fe66c0 (patch)
treec7ea397b8801893f6aa4c751ef974390f5488648 /content/content_protected.h
parentec0028bdb96a03f83055f2798c498a36142d6b03 (diff)
downloadnetsurf-f3892c98fdc734a0abca136ab712c94246fe66c0.tar.gz
netsurf-f3892c98fdc734a0abca136ab712c94246fe66c0.tar.bz2
Add content_exec and associated vtable entry
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
Diffstat (limited to 'content/content_protected.h')
-rw-r--r--content/content_protected.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/content/content_protected.h b/content/content_protected.h
index be277a042..99a05cf49 100644
--- a/content/content_protected.h
+++ b/content/content_protected.h
@@ -81,6 +81,7 @@ struct content_handler {
content_type (*type)(void);
void (*add_user)(struct content *c);
void (*remove_user)(struct content *c);
+ bool (*exec)(struct content *c, const char *src, size_t srclen);
/** handler dependant content sensitive internal data interface. */
void * (*get_internal)(const struct content *c, void *context);