Add Windows specific "enableextfs" prefs items. There, the "extfs" path is

replaced by a virtual desktop containing all current drives.
This commit is contained in:
gbeauche 2004-12-03 22:04:24 +00:00
parent 238c68c8df
commit 7b3a535f2f

View File

@ -41,6 +41,7 @@ prefs_desc platform_prefs_items[] = {
#ifdef HAVE_SIGSEGV_SKIP_INSTRUCTION
{"ignoresegv", TYPE_BOOLEAN, false, "ignore illegal memory accesses"},
#endif
{"enableextfs", TYPE_BOOLEAN, false, "enable extfs system"},
{NULL, TYPE_END, false, NULL} // End of list
};
@ -112,4 +113,5 @@ void AddPlatformPrefsDefaults(void)
#ifdef HAVE_SIGSEGV_SKIP_INSTRUCTION
PrefsAddBool("ignoresegv", false);
#endif
PrefsReplaceBool("enableextfs", false);
}