windows frontend netsurf options

This commit is contained in:
Vincent Sanders 2016-10-19 23:07:43 +01:00
parent 601d9da66d
commit 43e91251ad
4 changed files with 41 additions and 1 deletions

View File

@ -15,6 +15,7 @@ LDFLAGS += -lgnurx -lgdi32 -lcomctl32 -lws2_32 -lmsimg32 -lshlwapi -mwindows
CFLAGS += -U__STRICT_ANSI__ -mwin32
# only windows versions after XP are supported
# https://msdn.microsoft.com/en-gb/library/windows/desktop/aa383745
CFLAGS += '-DWINVER=0x0501'
CFLAGS += '-D_WIN32_WINNT=0x0501'
CFLAGS += '-D_WIN32_WINDOWS=0x0501'
@ -23,7 +24,7 @@ CFLAGS += '-D_WIN32_IE=0x0501'
#installed resource path
CFLAGS += '-DNETSURF_WINDOWS_RESPATH="$(NETSURF_WINDOWS_RESPATH)"'
WSCFLAGS := -std=c99 -DCURL_STATICLIB -DCARES_STATICLIB -g
WSCFLAGS := -std=c99 -Dnswin32 -DCURL_STATICLIB -DCARES_STATICLIB -g
CFLAGS += $(WSCFLAGS)
LDFLAGS += $(WSCFLAGS)

View File

@ -0,0 +1,33 @@
/*
* Copyright 2016 Vincent Sanders <vince@netsurf-browser.org>
*
* This file is part of NetSurf, http://www.netsurf-browser.org/
*
* NetSurf is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* NetSurf is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _NETSURF_WIN32_OPTIONS_H_
#define _NETSURF_WIN32_OPTIONS_H_
/* currently nothing here */
#endif
/* location to download files to */
NSOPTION_STRING(downloads_directory, NULL)
/* where to store URL database */
NSOPTION_STRING(url_file, NULL)
/* path to save hotlist file */
NSOPTION_STRING(hotlist_path, NULL)

View File

@ -77,6 +77,8 @@ static struct nsoption_s defaults[] = {
#include "atari/options.h"
#elif defined(nsmonkey)
#include "monkey/options.h"
#elif defined(nswin32)
#include "windows/options.h"
#endif
{ NULL, 0, OPTION_INTEGER, { 0 } }
};

View File

@ -71,6 +71,8 @@
#include "atari/options.h"
#elif defined(nsmonkey)
#include "monkey/options.h"
#elif defined(nswin32)
#include "windows/options.h"
#endif
#undef NSOPTION_BOOL
@ -142,6 +144,8 @@ enum nsoption_e {
#include "atari/options.h"
#elif defined(nsmonkey)
#include "monkey/options.h"
#elif defined(nswin32)
#include "windows/options.h"
#endif
NSOPTION_LISTEND /* end of list */
};