Commit 866c5886 authored by Peter Hawkins's avatar Peter Hawkins Committed by Alexandre Julliard

Added DOS int 21h function 4452h support (DR-DOS version check).

parent 1cbaad7f
......@@ -1727,6 +1727,16 @@ void WINAPI DOS3Call( CONTEXT86 *context )
case 0xe0: /* Sun PC-NFS API */
/* not installed */
break;
case 0x52: /* DR-DOS version */
/* This is not DR-DOS */
TRACE("GET DR-DOS VERSION requested");
AX_reg(context) = 0x0001; /* Invalid function */
SET_CFLAG(context); /* Error */
SetLastError( ERROR_INVALID_FUNCTION );
break;
default:
INT_BARF( context, 0x21 );
......
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