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
d11443e3
Commit
d11443e3
authored
Mar 17, 1999
by
Jess Haas
Committed by
Alexandre Julliard
Mar 17, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some stubs for int15 functions.
parent
c68c4b15
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
0 deletions
+32
-0
int15.c
msdos/int15.c
+32
-0
No files found.
msdos/int15.c
View file @
d11443e3
...
...
@@ -30,6 +30,38 @@ void WINAPI INT_Int15Handler( CONTEXT *context )
AH_reg
(
context
)
=
0x0
;
RESET_CFLAG
(
context
);
break
;
case
0xc2
:
switch
(
AL_reg
(
context
))
{
case
0x00
:
/* Enable-Disable Pointing Device (mouse) */
/* BH = newstate, 00h = disabled 01h = enabled */
switch
(
BH_reg
(
context
))
{
case
0x00
:
FIXME
(
int
,
"Disable Pointing Device - not implemented
\n
"
);
break
;
case
0x01
:
FIXME
(
int
,
"Enable Pointing Device - not implemented
\n
"
);
break
;
default:
INT_BARF
(
context
,
0x15
);
break
;
}
AH_reg
(
context
)
=
0x00
;
/* successful */
break
;
case
0x02
:
/* Set Sampling Rate */
/* BH = sampling rate */
FIXME
(
int
,
"Set Sampling Rate - not implemented
\n
"
);
AH_reg
(
context
)
=
0x00
;
/* successful */
break
;
case
0x04
:
/* Get Pointing Device Type */
FIXME
(
int
,
"Get Pointing Device Type - not implemented
\n
"
);
BH_reg
(
context
)
=
0x01
;
/*Device id FIXME what is it suposed to be?*/
break
;
default:
INT_BARF
(
context
,
0x15
);
}
break
;
default:
INT_BARF
(
context
,
0x15
);
...
...
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