2006-07-23 22:26:11 +04:00
|
|
|
/*
|
2006-11-27 18:35:18 +03:00
|
|
|
* This file is part of NetSurf, http://netsurf-browser.org/
|
2006-07-23 22:26:11 +04:00
|
|
|
* Licensed under the GNU General Public License,
|
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
|
|
* Copyright 2006 Rob Kendrick <rjek@rjek.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef NETSURF_GTK_OPTIONS_H
|
|
|
|
#define NETSURF_GTK_OPTIONS_H
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
extern GtkWindow *wndChoices;
|
|
|
|
|
|
|
|
void nsgtk_options_init(void); /** Init options and load window */
|
|
|
|
void nsgtk_options_load(void); /** Load current options into window */
|
|
|
|
void nsgtk_options_save(void); /** Save options from window */
|
|
|
|
|
|
|
|
#endif
|