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
d921d161
Commit
d921d161
authored
Dec 06, 2004
by
Mike McCormack
Committed by
Alexandre Julliard
Dec 06, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub implementation for SetupDiOpenDeviceInterface.
parent
63d757f0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
2 deletions
+30
-2
devinst.c
dlls/setupapi/devinst.c
+28
-0
setupapi.spec
dlls/setupapi/setupapi.spec
+2
-2
No files found.
dlls/setupapi/devinst.c
View file @
d921d161
...
...
@@ -1123,3 +1123,31 @@ HKEY WINAPI SetupDiOpenClassRegKeyExW(
return
hClassKey
;
}
/***********************************************************************
* SetupDiOpenDeviceInterfaceA (SETUPAPI.@)
*/
BOOL
WINAPI
SetupDiOpenDeviceInterfaceW
(
HDEVINFO
DeviceInfoSet
,
PCWSTR
DevicePath
,
DWORD
OpenFlags
,
PSP_DEVICE_INTERFACE_DATA
DeviceInterfaceData
)
{
FIXME
(
"%p %s %08lx %p
\n
"
,
DeviceInfoSet
,
debugstr_w
(
DevicePath
),
OpenFlags
,
DeviceInterfaceData
);
return
FALSE
;
}
/***********************************************************************
* SetupDiOpenDeviceInterfaceA (SETUPAPI.@)
*/
BOOL
WINAPI
SetupDiOpenDeviceInterfaceA
(
HDEVINFO
DeviceInfoSet
,
PCSTR
DevicePath
,
DWORD
OpenFlags
,
PSP_DEVICE_INTERFACE_DATA
DeviceInterfaceData
)
{
FIXME
(
"%p %s %08lx %p
\n
"
,
DeviceInfoSet
,
debugstr_a
(
DevicePath
),
OpenFlags
,
DeviceInterfaceData
);
return
FALSE
;
}
dlls/setupapi/setupapi.spec
View file @
d921d161
...
...
@@ -359,9 +359,9 @@
@ stub SetupDiOpenDevRegKey
@ stub SetupDiOpenDeviceInfoA
@ stub SetupDiOpenDeviceInfoW
@ st
ub SetupDiOpenDeviceInterfaceA
@ st
dcall SetupDiOpenDeviceInterfaceA(ptr str long ptr)
@ stub SetupDiOpenDeviceInterfaceRegKey
@ st
ub SetupDiOpenDeviceInterfaceW
@ st
dcall SetupDiOpenDeviceInterfaceW(ptr wstr long ptr)
@ stub SetupDiRegisterDeviceInfo
@ stub SetupDiRemoveDevice
@ stub SetupDiRemoveDeviceInterface
...
...
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