winedos: Don't disable long filename functions on NT versions.
This commit is contained in:
parent
49099ba0e5
commit
f8f8e7ef51
|
@ -3055,14 +3055,6 @@ static void INT21_LongFilename( CONTEXT86 *context )
|
||||||
WCHAR pathW[MAX_PATH];
|
WCHAR pathW[MAX_PATH];
|
||||||
char* pathA;
|
char* pathA;
|
||||||
|
|
||||||
if (HIBYTE(HIWORD(GetVersion16())) < 0x07)
|
|
||||||
{
|
|
||||||
TRACE( "LONG FILENAME - functions supported only under DOS7\n" );
|
|
||||||
SET_CFLAG( context );
|
|
||||||
SET_AL( context, 0 );
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (AL_reg(context))
|
switch (AL_reg(context))
|
||||||
{
|
{
|
||||||
case 0x0d: /* RESET DRIVE */
|
case 0x0d: /* RESET DRIVE */
|
||||||
|
|
Loading…
Reference in New Issue