summaryrefslogtreecommitdiff
path: root/windows/localhistory.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2011-04-03 22:01:37 +0000
committerVincent Sanders <vince@netsurf-browser.org>2011-04-03 22:01:37 +0000
commit2ca6e9a3e6bd7450cd1fb80db3a777956c804e11 (patch)
tree846451c0e1e57bbf901a183c15a4c2866643e033 /windows/localhistory.h
parent74ffc40e9238c9897ae47b8118f642565e9654a0 (diff)
downloadnetsurf-2ca6e9a3e6bd7450cd1fb80db3a777956c804e11.tar.gz
netsurf-2ca6e9a3e6bd7450cd1fb80db3a777956c804e11.tar.bz2
split out drawable window handling
extensive cleanups fix localhistory svn path=/trunk/netsurf/; revision=12153
Diffstat (limited to 'windows/localhistory.h')
-rw-r--r--windows/localhistory.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/windows/localhistory.h b/windows/localhistory.h
index 422619239..4f1920dbd 100644
--- a/windows/localhistory.h
+++ b/windows/localhistory.h
@@ -19,12 +19,14 @@
#ifndef _NETSURF_WINDOWS_LOCALHISTORY_H_
#define _NETSURF_WINDOWS_LOCALHISTORY_H_
-#include "desktop/browser.h"
-
struct nsws_localhistory;
-void nsws_localhistory_init(struct gui_window *);
-void nsws_localhistory_up(struct gui_window *);
-void nsws_localhistory_close(struct gui_window *);
+void nsws_localhistory_open(struct gui_window *gw);
+void nsws_localhistory_close(struct gui_window *gw);
+
+/* creates localhistory window */
+struct nsws_localhistory * nsws_window_create_localhistory(struct gui_window *gw);
+
+nserror nsws_create_localhistory_class(HINSTANCE hinstance);
#endif