winedos: Don't disable long filename functions on NT versions.

This commit is contained in:
Alexandre Julliard 2008-05-12 11:44:19 +02:00
parent 49099ba0e5
commit f8f8e7ef51

View File

@ -3055,14 +3055,6 @@ static void INT21_LongFilename( CONTEXT86 *context )
WCHAR pathW[MAX_PATH];
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))
{
case 0x0d: /* RESET DRIVE */