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
20c338ac
Commit
20c338ac
authored
Dec 15, 2003
by
Marcus Meissner
Committed by
Alexandre Julliard
Dec 15, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Explicitly clear vm86 flag in DIOCRegs_2_CONTEXT.
parent
20c1d1e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
device.c
dlls/kernel/device.c
+3
-1
No files found.
dlls/kernel/device.c
View file @
20c338ac
...
@@ -287,6 +287,7 @@ HANDLE DEVICE_Open( LPCWSTR filenameW, DWORD access, LPSECURITY_ATTRIBUTES sa )
...
@@ -287,6 +287,7 @@ HANDLE DEVICE_Open( LPCWSTR filenameW, DWORD access, LPSECURITY_ATTRIBUTES sa )
FIXME
(
"Unknown/unsupported VxD %s. Try setting Windows version to 'nt40' or 'win31'.
\n
"
,
FIXME
(
"Unknown/unsupported VxD %s. Try setting Windows version to 'nt40' or 'win31'.
\n
"
,
filename
);
filename
);
SetLastError
(
ERROR_FILE_NOT_FOUND
);
SetLastError
(
ERROR_FILE_NOT_FOUND
);
return
0
;
return
0
;
}
}
...
@@ -609,7 +610,8 @@ static void DIOCRegs_2_CONTEXT( DIOC_REGISTERS *pIn, CONTEXT86 *pCxt )
...
@@ -609,7 +610,8 @@ static void DIOCRegs_2_CONTEXT( DIOC_REGISTERS *pIn, CONTEXT86 *pCxt )
pCxt
->
Edi
=
pIn
->
reg_EDI
;
pCxt
->
Edi
=
pIn
->
reg_EDI
;
/* FIXME: Only partial CONTEXT86_CONTROL */
/* FIXME: Only partial CONTEXT86_CONTROL */
pCxt
->
EFlags
=
pIn
->
reg_Flags
;
pCxt
->
EFlags
=
pIn
->
reg_Flags
&
~
0x00020000
;
/* clear vm86 mode */
}
}
static
void
CONTEXT_2_DIOCRegs
(
CONTEXT86
*
pCxt
,
DIOC_REGISTERS
*
pOut
)
static
void
CONTEXT_2_DIOCRegs
(
CONTEXT86
*
pCxt
,
DIOC_REGISTERS
*
pOut
)
...
...
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