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
1699c3a5
Commit
1699c3a5
authored
Feb 21, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 21, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vwin32.vxd: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
3c4b6653
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
7 deletions
+6
-7
Makefile.in
dlls/vwin32.vxd/Makefile.in
+0
-1
vwin32.c
dlls/vwin32.vxd/vwin32.c
+6
-6
No files found.
dlls/vwin32.vxd/Makefile.in
View file @
1699c3a5
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
vwin32.vxd
IMPORTS
=
kernel
...
...
dlls/vwin32.vxd/vwin32.c
View file @
1699c3a5
...
...
@@ -123,8 +123,8 @@ BOOL WINAPI VWIN32_DeviceIoControl(DWORD dwIoControlCode,
BYTE
intnum
=
0
;
TRACE
(
"Control '%s': "
"eax=0x%08
x, ebx=0x%08x, ecx=0x%08
x, "
"edx=0x%08
x, esi=0x%08x, edi=0x%08
x
\n
"
,
"eax=0x%08
lx, ebx=0x%08lx, ecx=0x%08l
x, "
"edx=0x%08
lx, esi=0x%08lx, edi=0x%08l
x
\n
"
,
(
dwIoControlCode
==
VWIN32_DIOC_DOS_IOCTL
)
?
"VWIN32_DIOC_DOS_IOCTL"
:
(
dwIoControlCode
==
VWIN32_DIOC_DOS_INT25
)
?
"VWIN32_DIOC_DOS_INT25"
:
(
dwIoControlCode
==
VWIN32_DIOC_DOS_INT26
)
?
"VWIN32_DIOC_DOS_INT26"
:
...
...
@@ -165,7 +165,7 @@ BOOL WINAPI VWIN32_DeviceIoControl(DWORD dwIoControlCode,
return
FALSE
;
default:
FIXME
(
"Unknown Control %d
\n
"
,
dwIoControlCode
);
FIXME
(
"Unknown Control %
l
d
\n
"
,
dwIoControlCode
);
return
FALSE
;
}
}
...
...
@@ -191,7 +191,7 @@ DWORD WINAPI VWIN32_VxDCall( DWORD service, CONTEXT *context )
{
DWORD
parm
=
stack32_pop
(
context
);
FIXME
(
"Get VMCPD Version(%08x): partial stub!
\n
"
,
parm
);
FIXME
(
"Get VMCPD Version(%08
l
x): partial stub!
\n
"
,
parm
);
/* FIXME: This is what Win98 returns, it may
* not be correct in all situations.
...
...
@@ -204,7 +204,7 @@ DWORD WINAPI VWIN32_VxDCall( DWORD service, CONTEXT *context )
DWORD
callnum
=
stack32_pop
(
context
);
DWORD
parm
=
stack32_pop
(
context
);
TRACE
(
"Int31/DPMI dispatch(%08x)
\n
"
,
callnum
);
TRACE
(
"Int31/DPMI dispatch(%08
l
x)
\n
"
,
callnum
);
context
->
Eax
=
callnum
;
context
->
Ecx
=
parm
;
...
...
@@ -217,7 +217,7 @@ DWORD WINAPI VWIN32_VxDCall( DWORD service, CONTEXT *context )
return
callnum
;
/* FIXME: should really call INT_Int41Handler() */
}
default:
FIXME
(
"Unknown service %08x
\n
"
,
service
);
FIXME
(
"Unknown service %08
l
x
\n
"
,
service
);
return
0xffffffff
;
}
}
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