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
eba5752f
Commit
eba5752f
authored
Jul 29, 2000
by
Ove Kaaven
Committed by
Alexandre Julliard
Jul 29, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some int33 function stubs.
parent
aeb9c4e2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
int33.c
msdos/int33.c
+21
-0
No files found.
msdos/int33.c
View file @
eba5752f
...
...
@@ -36,6 +36,12 @@ void WINAPI INT_Int33Handler( CONTEXT86 *context )
sys
=
calloc
(
1
,
sizeof
(
MOUSESYSTEM
));
DOSVM_SetSystemData
(
0x33
,
sys
);
break
;
case
0x01
:
FIXME
(
"Show mouse cursor
\n
"
);
break
;
case
0x02
:
FIXME
(
"Hide mouse cursor
\n
"
);
break
;
case
0x03
:
TRACE
(
"Return mouse position and button status
\n
"
);
BX_reg
(
context
)
=
sys
->
but
;
...
...
@@ -45,11 +51,26 @@ void WINAPI INT_Int33Handler( CONTEXT86 *context )
case
0x04
:
FIXME
(
"Position mouse cursor
\n
"
);
break
;
case
0x07
:
FIXME
(
"Define horizontal mouse cursor range
\n
"
);
break
;
case
0x08
:
FIXME
(
"Define vertical mouse cursor range
\n
"
);
break
;
case
0x09
:
FIXME
(
"Define graphics mouse cursor
\n
"
);
break
;
case
0x0A
:
FIXME
(
"Define text mouse cursor
\n
"
);
break
;
case
0x0C
:
TRACE
(
"Define mouse interrupt subroutine
\n
"
);
sys
->
callmask
=
CX_reg
(
context
);
sys
->
callback
=
(
FARPROC16
)
PTR_SEG_OFF_TO_SEGPTR
(
ES_reg
(
context
),
DX_reg
(
context
));
break
;
case
0x10
:
FIXME
(
"Define screen region for update
\n
"
);
break
;
default:
INT_BARF
(
context
,
0x33
);
}
...
...
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