mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
61 lines
2.9 KiB
C
61 lines
2.9 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.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
#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_ */
|