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
018e3cc6
Commit
018e3cc6
authored
Jun 24, 2003
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Jun 24, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Expose part of DOSVM_SendQueuedEvents() also for platforms without
MZ_SUPPORTED.
parent
b2df5f9f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
dosvm.c
dlls/winedos/dosvm.c
+10
-3
No files found.
dlls/winedos/dosvm.c
View file @
018e3cc6
...
...
@@ -61,8 +61,6 @@ WINE_DECLARE_DEBUG_CHANNEL(relay);
WORD
DOSVM_psp
=
0
;
WORD
DOSVM_retval
=
0
;
#ifdef MZ_SUPPORTED
#ifdef HAVE_SYS_VM86_H
# include <sys/vm86.h>
#endif
...
...
@@ -220,6 +218,8 @@ void DOSVM_SendQueuedEvents( CONTEXT86 *context )
NtCurrentTeb
()
->
vm86_pending
=
0
;
}
#ifdef MZ_SUPPORTED
if
(
!
ISV86
(
context
)
&&
context
->
SegCs
==
old_cs
&&
context
->
Eip
==
old_ip
)
{
/*
...
...
@@ -241,10 +241,17 @@ void DOSVM_SendQueuedEvents( CONTEXT86 *context )
NtCurrentTeb
()
->
vm86_pending
|=
VIP_MASK
;
}
#else
FIXME
(
"No DOS .exe file support on this platform (yet)
\n
"
);
#endif
/* MZ_SUPPORTED */
LeaveCriticalSection
(
&
qcrit
);
}
#ifdef MZ_SUPPORTED
/***********************************************************************
* QueueEvent (WINEDOS.@)
*/
...
...
@@ -648,7 +655,7 @@ void WINAPI DOSVM_QueueEvent( INT irq, INT priority, DOSRELAY relay, LPVOID data
}
}
#endif
#endif
/* MZ_SUPPORTED */
/**********************************************************************
...
...
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