[project @ 2003-09-17 12:58:19 by bursa]

Update plugin_redraw() parameters.

svn path=/import/netsurf/; revision=297
This commit is contained in:
James Bursa 2003-09-17 12:58:19 +00:00
parent 763f186705
commit af6baf91f0
2 changed files with 4 additions and 2 deletions

View File

@ -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;

View File

@ -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);