summaryrefslogtreecommitdiff
path: root/atari/misc.h
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2012-04-10 23:10:49 +0000
committerOle Loots <ole@monochrom.net>2012-04-10 23:10:49 +0000
commita94781edc034b60c72ea148e57f6f1cdc545377d (patch)
treef98c1108ec747f9582a787403b92fec9593d7f51 /atari/misc.h
parent3158226bbed794a8676be11736f055c0716bd5d7 (diff)
downloadnetsurf-a94781edc034b60c72ea148e57f6f1cdc545377d.tar.gz
netsurf-a94781edc034b60c72ea148e57f6f1cdc545377d.tar.bz2
Added function load_icon
svn path=/trunk/netsurf/; revision=13847
Diffstat (limited to 'atari/misc.h')
-rwxr-xr-xatari/misc.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/atari/misc.h b/atari/misc.h
index 7064e744e..edd026ba4 100755
--- a/atari/misc.h
+++ b/atari/misc.h
@@ -20,6 +20,8 @@
#define NS_ATARI_MISC_H
#include "cflib.h"
+#include "content/content.h"
+#include "content/hlcache.h"
#include "desktop/textinput.h"
#include "atari/gui.h"
@@ -42,13 +44,16 @@ struct gui_window * find_gui_window( unsigned long, short mode );
struct gui_window * find_cmp_window( COMPONENT * c );
OBJECT *get_tree( int idx );
char *get_rsc_string( int idx );
-void gem_set_cursor( MFORM_EX * cursor );
+void gem_set_cursor( MFORM_EX * cursor );
+hlcache_handle *load_icon( const char *name, hlcache_handle_callback cb,
+ void * pw );
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 );
+const char * file_select( const char * title, const char * name );
int ldg_close( void * ldg, short * global );
long nkc_to_input_key(short nkc, long * ucs4_out);
-const char * file_select( const char * title, const char * name );
+
#endif