mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-24 23:39:51 +03:00
25e22eb1f5
svn path=/trunk/netsurf/; revision=3306
21 lines
526 B
C
21 lines
526 B
C
/*
|
|
* This file is part of NetSurf, http://netsurf-browser.org/
|
|
* Licensed under the GNU General Public License,
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
* Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
|
|
*/
|
|
|
|
#ifndef _NETSURF_DESKTOP_NETSURF_H_
|
|
#define _NETSURF_DESKTOP_NETSURF_H_
|
|
|
|
#include <stdbool.h>
|
|
|
|
extern bool netsurf_quit;
|
|
extern bool verbose_log;
|
|
extern const char * const netsurf_version;
|
|
extern const int netsurf_version_major;
|
|
extern const int netsurf_version_minor;
|
|
|
|
#endif
|
|
|