Commit f8f8e7ef authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent 49099ba0
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment