mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
57 lines
2.8 KiB
C
57 lines
2.8 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
|
|
#ifndef __mkprefs_h_
|
|
#define __mkprefs_h_
|
|
|
|
#define pref_browserPrefetch "browser.prefetch"
|
|
#define pref_browserCacheMemSize "browser.cache.memory_cache_size"
|
|
#define pref_browserCacheDiskSize "browser.cache.disk_cache_size"
|
|
#define pref_browserCacheDocFreq "browser.cache.check_doc_frequency"
|
|
#define pref_mailAllowSignInUName "mail.allow_at_sign_in_user_name"
|
|
#define pref_dnsExpiration "network.dnsCacheExpiration"
|
|
#define pref_socksPort "network.hosts.socks_serverport"
|
|
#define pref_socksServer "network.hosts.socks_server"
|
|
#define pref_proxyACUrl "network.proxy.autoconfig_url"
|
|
#define pref_proxyType "network.proxy.type"
|
|
#define pref_proxyFtpPort "network.proxy.ftp_port"
|
|
#define pref_proxyFtpServer "network.proxy.ftp"
|
|
#define pref_proxyGopherPort "network.proxy.gopher_port"
|
|
#define pref_proxyGopherServer "network.proxy.gopher"
|
|
#define pref_proxyHttpPort "network.proxy.http_port"
|
|
#define pref_proxyHttpServer "network.proxy.http"
|
|
#define pref_proxyNewsPort "network.proxy.news_port"
|
|
#define pref_proxyNewsServer "network.proxy.news"
|
|
#define pref_proxyWaisPort "network.proxy.wais_port"
|
|
#define pref_proxyWaisServer "network.proxy.wais"
|
|
#define pref_proxyNoProxiesOn "network.proxy.no_proxies_on"
|
|
#define pref_generalHelpSource "general.help_source.site"
|
|
#define pref_generalHelpSourceUrl "general.help_source.url"
|
|
#define pref_padPacURL "network.padPacURL"
|
|
#define pref_enablePad "network.enablePad"
|
|
#define pref_mailQuotedStyle "mail.quoted_style"
|
|
#define pref_cookieBehavior "network.cookie.cookieBehavior"
|
|
#define pref_warnAboutCookies "network.cookie.warnAboutCookies"
|
|
#define pref_strictCookieDomains "network.cookie.strictDomains"
|
|
#define pref_scriptName "network.cookie.filterName"
|
|
#define pref_goBrowsingEnabled "browser.goBrowsing.enabled"
|
|
#define pref_sendRefererHeader "network.sendRefererHeader"
|
|
#define pref_searchUrl "network.search.url"
|
|
|
|
#endif /* __mkprefs_h_ */
|