Updated messages with new config files in mind to keep from confusing
users.
This commit is contained in:
parent
d4c6485390
commit
e4055508a0
|
@ -80,7 +80,7 @@ int DIR_Init(void)
|
||||||
cwd = path;
|
cwd = path;
|
||||||
if ((drive = DRIVE_FindDriveRoot( &cwd )) == -1)
|
if ((drive = DRIVE_FindDriveRoot( &cwd )) == -1)
|
||||||
{
|
{
|
||||||
MESSAGE("Warning: could not find wine.conf [Drive x] entry "
|
MESSAGE("Warning: could not find wine config [Drive x] entry "
|
||||||
"for current working directory %s; "
|
"for current working directory %s; "
|
||||||
"starting in windows directory.\n", cwd );
|
"starting in windows directory.\n", cwd );
|
||||||
}
|
}
|
||||||
|
@ -120,7 +120,7 @@ int DIR_Init(void)
|
||||||
path, sizeof(path) );
|
path, sizeof(path) );
|
||||||
if (strchr(path, '/'))
|
if (strchr(path, '/'))
|
||||||
{
|
{
|
||||||
MESSAGE("No '/' allowed in [wine] 'Path=' statement of wine.conf !\n");
|
MESSAGE("No '/' allowed in [wine] 'Path=' statement of wine config!\n");
|
||||||
PROFILE_UsageWineIni();
|
PROFILE_UsageWineIni();
|
||||||
ExitProcess(1);
|
ExitProcess(1);
|
||||||
}
|
}
|
||||||
|
|
|
@ -61,9 +61,9 @@ typedef struct
|
||||||
char *dos_cwd; /* cwd in DOS format without leading or trailing \ */
|
char *dos_cwd; /* cwd in DOS format without leading or trailing \ */
|
||||||
char *unix_cwd; /* cwd in Unix format without leading or trailing / */
|
char *unix_cwd; /* cwd in Unix format without leading or trailing / */
|
||||||
char *device; /* raw device path */
|
char *device; /* raw device path */
|
||||||
char label_conf[12]; /* drive label as cfg'd in wine.conf */
|
char label_conf[12]; /* drive label as cfg'd in wine config */
|
||||||
char label_read[12]; /* drive label as read from device */
|
char label_read[12]; /* drive label as read from device */
|
||||||
DWORD serial_conf; /* drive serial number as cfg'd in wine.conf */
|
DWORD serial_conf; /* drive serial number as cfg'd in wine config */
|
||||||
UINT type; /* drive type */
|
UINT type; /* drive type */
|
||||||
UINT flags; /* drive flags */
|
UINT flags; /* drive flags */
|
||||||
dev_t dev; /* unix device number */
|
dev_t dev; /* unix device number */
|
||||||
|
|
Loading…
Reference in New Issue