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
1491e3ff
Commit
1491e3ff
authored
Oct 17, 1998
by
Joseph Pranevich
Committed by
Alexandre Julliard
Oct 17, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Shell parameters (config.sys) and ANSI support stubs.
parent
0be39637
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
int2f.c
msdos/int2f.c
+10
-0
No files found.
msdos/int2f.c
View file @
1491e3ff
...
...
@@ -94,6 +94,11 @@ void WINAPI INT_Int2fHandler( CONTEXT *context )
case
0x16
:
do_int2f_16
(
context
);
break
;
case
0x1a
:
/* ANSI.SYS / AVATAR.SYS Install Check */
/* Not supported yet, do nothing */
break
;
case
0x43
:
#if 1
switch
(
AL_reg
(
context
))
...
...
@@ -247,6 +252,11 @@ static void do_int2f_16( CONTEXT *context )
CX_reg
(
context
)
=
(
GetWinFlags
()
&
WF_ENHANCED
)
?
3
:
2
;
break
;
case
0x11
:
/* Get Shell Parameters - (SHELL= in CONFIG.SYS) */
/* We can mock this up. But not today... */
FIXME
(
int
,
"Get Shell Parameters
\n
"
);
break
;
case
0x80
:
/* Release time-slice */
AL_reg
(
context
)
=
0
;
/* FIXME: We need to do something that lets some other process run
...
...
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