summaryrefslogtreecommitdiff
path: root/riscos
diff options
context:
space:
mode:
Diffstat (limited to 'riscos')
-rw-r--r--riscos/plugin.c3
-rw-r--r--riscos/plugin.h3
2 files changed, 4 insertions, 2 deletions
diff --git a/riscos/plugin.c b/riscos/plugin.c
index 55304a55f..2d778f0cb 100644
--- a/riscos/plugin.c
+++ b/riscos/plugin.c
@@ -530,7 +530,8 @@ void plugin_destroy(struct content *c)
* Redraw plugin on page.
*/
void plugin_redraw(struct content *c, long x, long y,
- unsigned long width, unsigned long height)
+ unsigned long width, unsigned long height,
+ long clip_x0, long clip_y0, long clip_x1, long clip_y1)
{
struct plugin_list *npl;
diff --git a/riscos/plugin.h b/riscos/plugin.h
index babc6310e..6f3d8220d 100644
--- a/riscos/plugin.h
+++ b/riscos/plugin.h
@@ -77,7 +77,8 @@ void plugin_revive(struct content *c, unsigned int width, unsigned int height);
void plugin_reformat(struct content *c, unsigned int width, unsigned int height);
void plugin_destroy(struct content *c);
void plugin_redraw(struct content *c, long x, long y,
- unsigned long width, unsigned long height);
+ unsigned long width, unsigned long height,
+ long clip_x0, long clip_y0, long clip_x1, long clip_y1);
void plugin_add_instance(struct content *c, struct browser_window *bw,
struct content *page, struct box *box,
struct object_params *params, void **state);