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
f08b8196
Commit
f08b8196
authored
May 22, 1999
by
Juergen Schmied
Committed by
Alexandre Julliard
May 22, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some stubs for pccard vxd to debug the native shell32.
parent
1a229642
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
45 additions
and
0 deletions
+45
-0
vxd.c
msdos/vxd.c
+16
-0
device.c
win32/device.c
+29
-0
No files found.
msdos/vxd.c
View file @
f08b8196
...
...
@@ -193,7 +193,23 @@ void WINAPI VXD_Shell( CONTEXT *context )
case
0x0001
:
case
0x0002
:
case
0x0003
:
/* SHELL_SYSMODAL_Message
ebx virtual maschine handle
eax message box flags
ecx address of message
edi address of caption
return response in eax
*/
case
0x0004
:
/* SHELL_Message
ebx virtual maschine handle
eax message box flags
ecx address of message
edi address of caption
esi address callback
edx reference data for callback
return response in eax
*/
case
0x0005
:
VXD_BARF
(
context
,
"shell"
);
break
;
...
...
win32/device.c
View file @
f08b8196
...
...
@@ -65,6 +65,11 @@ static BOOL DeviceIo_VWin32(DWORD dwIoControlCode,
LPDWORD
lpcbBytesReturned
,
LPOVERLAPPED
lpOverlapped
);
static
BOOL
DeviceIo_PCCARD
(
DWORD
dwIoControlCode
,
LPVOID
lpvInBuffer
,
DWORD
cbInBuffer
,
LPVOID
lpvOutBuffer
,
DWORD
cbOutBuffer
,
LPDWORD
lpcbBytesReturned
,
LPOVERLAPPED
lpOverlapped
);
/*
* VxD names are taken from the Win95 DDK
*/
...
...
@@ -205,6 +210,8 @@ static const struct VxDInfo VxDList[] =
{
"AFILTER"
,
0x04A1
,
NULL
,
NULL
},
{
"IRLAMP"
,
0x04A2
,
NULL
,
NULL
},
{
"PCCARD"
,
0x097C
,
NULL
,
DeviceIo_PCCARD
},
/* WINE additions, ids unknown */
{
"MONODEBG.VXD"
,
0x4242
,
NULL
,
DeviceIo_MONODEBG
},
...
...
@@ -959,6 +966,28 @@ static BOOL DeviceIo_MONODEBG(DWORD dwIoControlCode,
}
return
TRUE
;
}
/* pccard */
static
BOOL
DeviceIo_PCCARD
(
DWORD
dwIoControlCode
,
LPVOID
lpvInBuffer
,
DWORD
cbInBuffer
,
LPVOID
lpvOutBuffer
,
DWORD
cbOutBuffer
,
LPDWORD
lpcbBytesReturned
,
LPOVERLAPPED
lpOverlapped
)
{
switch
(
dwIoControlCode
)
{
case
0x0000
:
/* PCCARD_Get_Version */
case
0x0001
:
/* PCCARD_Card_Services */
default:
FIXME
(
"(%ld,%p,%ld,%p,%ld,%p,%p): stub
\n
"
,
dwIoControlCode
,
lpvInBuffer
,
cbInBuffer
,
lpvOutBuffer
,
cbOutBuffer
,
lpcbBytesReturned
,
lpOverlapped
);
break
;
}
return
FALSE
;
}
DWORD
WINAPI
OpenVxDHandle
(
DWORD
pmt
)
{
...
...
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