summaryrefslogtreecommitdiff
path: root/atari/search.h
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2013-01-17 01:18:27 +0100
committerOle Loots <ole@monochrom.net>2013-01-17 01:18:27 +0100
commit13f22099ce9877a90caf376d626771beea7395c3 (patch)
treefdd46cc87641f235f33dd003a2acbefc751e6428 /atari/search.h
parent4f0ae4e12868ddf26e7018e0a3dec4badaa1b1b6 (diff)
downloadnetsurf-13f22099ce9877a90caf376d626771beea7395c3.tar.gz
netsurf-13f22099ce9877a90caf376d626771beea7395c3.tar.bz2
Search is functional.
Diffstat (limited to 'atari/search.h')
-rw-r--r--atari/search.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/atari/search.h b/atari/search.h
index 56ee7a681..00671e4a7 100644
--- a/atari/search.h
+++ b/atari/search.h
@@ -21,6 +21,7 @@
*
*/
+#include "desktop/browser.h"
#include "desktop/search.h"
#ifndef NS_ATARI_SEARCH_H
@@ -34,7 +35,8 @@ struct browser_window;
struct s_search_form_state
{
char text[32];
- uint32_t flags;
+ uint32_t flags;
+ bool back_avail;
};
struct s_search_form_session {
@@ -50,5 +52,6 @@ struct s_search_form_session * nsatari_search_session_create(OBJECT * obj,
void nsatari_search_session_destroy(struct s_search_form_session *s);
void nsatari_search_perform(struct s_search_form_session *s, OBJECT *obj,
search_flags_t f);
+void nsatari_search_restore_form( struct s_search_form_session *s, OBJECT *obj);
#endif