2003-06-30 16:44:03 +04:00
|
|
|
/*
|
2006-11-27 18:35:18 +03:00
|
|
|
* This file is part of NetSurf, http://netsurf-browser.org/
|
2003-06-30 16:44:03 +04:00
|
|
|
* Licensed under the GNU General Public License,
|
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
|
|
* Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
|
2002-09-11 18:24:02 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NETSURF_DESKTOP_NETSURF_H_
|
|
|
|
#define _NETSURF_DESKTOP_NETSURF_H_
|
|
|
|
|
2003-11-06 22:41:41 +03:00
|
|
|
#include <stdbool.h>
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2003-11-06 22:41:41 +03:00
|
|
|
extern bool netsurf_quit;
|
2007-05-31 02:27:58 +04:00
|
|
|
extern bool verbose_log;
|
2003-12-19 20:11:07 +03:00
|
|
|
extern const char * const netsurf_version;
|
2007-01-30 22:51:54 +03:00
|
|
|
extern const int netsurf_version_major;
|
|
|
|
extern const int netsurf_version_minor;
|
2002-09-11 18:24:02 +04:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|