mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-23 20:46:50 +03:00
[project @ 2003-09-17 12:58:19 by bursa]
Update plugin_redraw() parameters. svn path=/import/netsurf/; revision=297
This commit is contained in:
parent
763f186705
commit
af6baf91f0
@ -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;
|
||||
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user