
This file define the members of global database (which is accessible to all 
wizard's screens so they can adjust their behaviour according to that).

For example, key value of key named KEY located in database DATABASE under 
section SECTION could be accessed via command:

AccessAnyData DATABASE GET_KEY_VALUE_BY_NAME SECTION KEY

================================================================================
Following are the members of database "Cfg" and section "Cfg".

Key:    ConfMode
Values: GLOBAL | LOCAL
Desc:   Whether we are editing the global or local configuration. This is 
        especially needed when we are configuring wine without windows, becouse 
	in that case some locations differs in GLOBAL and LOCAL mode (like 
	where to copy register files etc.).

Key:    FileName 
Values: unix path
Desc:   Name of the wine config file which is being to be created/edited.

Key:    FileFormat
Values: CFG_FILE_FORMAT_OLD | CFG_FILE_FORMAT_NEW
Desc:   In which format we should write the final file.

Key:    ReadOnly
Values: YES | NO
Desc:   Whether the $FileName is ReadOnly (and also our configuration session).

Key:    WhatToDo
Values: GEN_NEW | EDIT_EXIST
Desc:   Whether the new wine config file should be created or rather the 
        existing one should be edited.

Key:    WinRootAction
Values: USE_EXIST | CREATE_FAKE
Desc:   Whether the existing Windows Root directory (from existing windows
        installation) should be used or the new fake windows installation
        should be created.
  
Key:    AutodetectFeedbackMsgDisplayed
Values: YES | NO
Desc:   Whether the feedback message about autodetection was already displayed
        to user.
  
================================================================================

Global Autodetect database (stored in CBase::AnyData(Autodetect) variable) 
contains following members:

Section: WinInstall 
Key:     Found
Values:  list like "{/mnt/hda3 Win95/98/ME} {/mnt/hda4 WinNT} {Other {}}"
Desc:    Each element of the list represent one of the autodetected Windows
         installation and consists of two elements: path where the autodetected
	 installation is located and the version of Windows 
	 (Win95/98/ME | WinNT). This key value always contains at least 
	 {Other {}} element.
	 
Section: WinInstall
Key:     path mentioned in "Found" key
Values:  list
Desc:    Contains the whole configuration file adjusted for autodetected 
         windows installation.
	 
Section: WinInstall
Key:     Other
Values:  list
Desc:    Contains the whole configuration file which is used in case 
         "use an existing Windows installation which wasn't autodetected".
	 
Section: WinInstall
Key:     Fake
Values:  list
Desc:    Whole configuration file for "Wine without Windows" option.

Section: Users
Key:     path mentioned in "Found" key
Values:  list
Desc:    User name and profile variable ([wine] section) value pairs, 
         for example
         "{{Default User} {/mnt/hdd1/winnt/profiles/Default User}} ... 
	  ... {{NO USER} {}}"

