Author: mono
Date: Wed Jan 11 14:35:14 2012
New Revision: 13399
URL:
http://source.netsurf-browser.org?rev=13399&view=rev
Log:
Removed non declared and unused "cookies_update" function ( some frontends still
define the functions), added missing prototypes.
Modified:
trunk/netsurf/atari/misc.c
trunk/netsurf/atari/misc.h
Modified: trunk/netsurf/atari/misc.c
URL:
http://source.netsurf-browser.org/trunk/netsurf/atari/misc.c?rev=13399&am...
==============================================================================
--- trunk/netsurf/atari/misc.c (original)
+++ trunk/netsurf/atari/misc.c Wed Jan 11 14:35:14 2012
@@ -21,11 +21,11 @@
#include <stdio.h>
#include <string.h>
#include <mint/osbind.h>
-#include <mint/cookie.h>
#include <windom.h>
#include "desktop/cookies.h"
-#include "desktop/mouse.h"
+#include "desktop/mouse.h"
+#include "desktop/cookies.h"
#include "utils/messages.h"
#include "utils/utils.h"
#include "utils/url.h"
@@ -53,11 +53,6 @@
{
printf("%s\n", error);
exit(1);
-}
-
-bool cookies_update(const char *domain, const struct cookie_data *data)
-{
- return true;
}
/**
Modified: trunk/netsurf/atari/misc.h
URL:
http://source.netsurf-browser.org/trunk/netsurf/atari/misc.h?rev=13399&am...
==============================================================================
--- trunk/netsurf/atari/misc.h (original)
+++ trunk/netsurf/atari/misc.h Wed Jan 11 14:35:14 2012
@@ -43,7 +43,9 @@
OBJECT *get_tree( int idx );
char *get_rsc_string( int idx );
void gem_set_cursor( MFORM_EX * cursor );
-void dbg_grect( char * str, GRECT * r );
+void dbg_grect( char * str, GRECT * r );
+void dbg_lgrect( char * str, LGRECT * r );
+void dbg_pxy( char * str, short * pxy );
void * ldg_open( char * name, short * global );
void * ldg_find( char * name, short * ldg );
int ldg_close( void * ldg, short * global );