Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
866c5886
Commit
866c5886
authored
Oct 13, 2000
by
Peter Hawkins
Committed by
Alexandre Julliard
Oct 13, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added DOS int 21h function 4452h support (DR-DOS version check).
parent
1cbaad7f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
int21.c
msdos/int21.c
+10
-0
No files found.
msdos/int21.c
View file @
866c5886
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment