Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
37f5166b
Commit
37f5166b
authored
Mar 30, 2004
by
Florian Goth
Committed by
Alexandre Julliard
Mar 30, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some stubs.
parent
9191a9cd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
int16.c
dlls/winedos/int16.c
+4
-0
int17.c
dlls/winedos/int17.c
+4
-0
No files found.
dlls/winedos/int16.c
View file @
37f5166b
...
...
@@ -96,6 +96,10 @@ void WINAPI DOSVM_Int16Handler( CONTEXT86 *context )
case
0x03
:
/* Set Typematic Rate and Delay */
FIXME
(
"Set Typematic Rate and Delay - Not Supported
\n
"
);
break
;
case
0x05
:
/*simulate Keystroke*/
FIXME
(
"Simulating a keystroke is not supported yet
\n
"
);
break
;
case
0x09
:
/* Get Keyboard Functionality */
FIXME
(
"Get Keyboard Functionality - Not Supported
\n
"
);
...
...
dlls/winedos/int17.c
View file @
37f5166b
...
...
@@ -37,6 +37,10 @@ void WINAPI DOSVM_Int17Handler( CONTEXT86 *context )
{
switch
(
AH_reg
(
context
)
)
{
case
0x00
:
/* Send character*/
FIXME
(
"Send character not supported yet
\n
"
);
SET_AH
(
context
,
0x00
);
/*Timeout*/
break
;
case
0x01
:
/* PRINTER - INITIALIZE */
FIXME
(
"Initialize Printer - Not Supported
\n
"
);
SET_AH
(
context
,
0x30
);
/* selected | out of paper */
...
...
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