From 08177fa58119f9e67fdffb32ee20dbf05bd4fa78 Mon Sep 17 00:00:00 2001 From: James Bursa Date: Thu, 10 Jun 2004 20:41:26 +0000 Subject: [project @ 2004-06-10 20:41:26 by bursa] Add global content list. Better error handling in content code. Improved code documentation. Remove some obsolete functions. Implement debug window listing contents. svn path=/import/netsurf/; revision=951 --- debug/netsurfd.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'debug/netsurfd.c') diff --git a/debug/netsurfd.c b/debug/netsurfd.c index fefc5d483..417af1d50 100644 --- a/debug/netsurfd.c +++ b/debug/netsurfd.c @@ -119,9 +119,9 @@ void plugin_decode(void *a, void *b, void *c, void *d) } #endif -void html_redraw(struct content *c, long x, long y, - unsigned long width, unsigned long height, - long x0, long y0, long x1, long y1, +void html_redraw(struct content *c, int x, int y, + int width, int height, + int x0, int y0, int x1, int y1, float scale) { } @@ -262,9 +262,9 @@ extern os_t os_read_monotonic_time(void) } #endif -void warn_user(const char *warn) +void warn_user(const char *warning, const char *detail) { - printf("WARNING: %s\n", warn); + printf("WARNING: %s %s\n", warning, detail); } void *ro_gui_current_redraw_gui = 0; -- cgit v1.2.3