mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
581 B
26 lines
581 B
/*
|
|
Enhanced NCSA Mosaic from Spyglass
|
|
"Guitar"
|
|
|
|
Copyright 1994 Spyglass, Inc.
|
|
All Rights Reserved
|
|
|
|
Author(s):
|
|
Eric W. Sink [email protected]
|
|
*/
|
|
|
|
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#ifdef FEATURE_HOMEPAGE
|
|
#define DEFAULT_INITIAL "initial.htm"
|
|
#endif
|
|
#ifdef OLD_HELP
|
|
#define DEFAULT_HELP_FILE "help/topics.htm"
|
|
#endif
|
|
#define DEFAULT_ANCHOR_COLOR RGB(0, 0, 255)
|
|
#define DEFAULT_ANCHOR_COLOR_BEENTHERE RGB(0, 128, 128)
|
|
/* history expiration of -1 means never expire history entries */
|
|
#define DEFAULT_HISTORY_EXPIRATION -1
|
|
|
|
#endif /* CONFIG_H */
|