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
3eea5a8a
Commit
3eea5a8a
authored
Dec 22, 2009
by
Andrew Nguyen
Committed by
Alexandre Julliard
Dec 22, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Implement SetupDiOpenDeviceInfoA/W as stubs.
parent
9f63f7d9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
2 deletions
+24
-2
setupapi.spec
dlls/setupapi/setupapi.spec
+2
-2
stubs.c
dlls/setupapi/stubs.c
+22
-0
No files found.
dlls/setupapi/setupapi.spec
View file @
3eea5a8a
...
@@ -369,8 +369,8 @@
...
@@ -369,8 +369,8 @@
@ stdcall SetupDiOpenClassRegKeyExA(ptr long long str ptr)
@ stdcall SetupDiOpenClassRegKeyExA(ptr long long str ptr)
@ stdcall SetupDiOpenClassRegKeyExW(ptr long long wstr ptr)
@ stdcall SetupDiOpenClassRegKeyExW(ptr long long wstr ptr)
@ stdcall SetupDiOpenDevRegKey(ptr ptr long long long long)
@ stdcall SetupDiOpenDevRegKey(ptr ptr long long long long)
@ st
ub SetupDiOpenDeviceInfoA
@ st
dcall SetupDiOpenDeviceInfoA(ptr str ptr long ptr)
@ st
ub SetupDiOpenDeviceInfoW
@ st
dcall SetupDiOpenDeviceInfoW(ptr wstr ptr long ptr)
@ stdcall SetupDiOpenDeviceInterfaceA(ptr str long ptr)
@ stdcall SetupDiOpenDeviceInterfaceA(ptr str long ptr)
@ stub SetupDiOpenDeviceInterfaceRegKey
@ stub SetupDiOpenDeviceInterfaceRegKey
@ stdcall SetupDiOpenDeviceInterfaceW(ptr wstr long ptr)
@ stdcall SetupDiOpenDeviceInterfaceW(ptr wstr long ptr)
...
...
dlls/setupapi/stubs.c
View file @
3eea5a8a
...
@@ -259,6 +259,28 @@ BOOL WINAPI SetupDiGetClassImageIndex(PSP_CLASSIMAGELIST_DATA ClassImageListData
...
@@ -259,6 +259,28 @@ BOOL WINAPI SetupDiGetClassImageIndex(PSP_CLASSIMAGELIST_DATA ClassImageListData
}
}
/***********************************************************************
/***********************************************************************
* SetupDiOpenDeviceInfoA (SETUPAPI.@)
*/
BOOL
WINAPI
SetupDiOpenDeviceInfoA
(
HDEVINFO
DeviceInfoSet
,
PCSTR
DeviceInstanceId
,
HWND
hwndParent
,
DWORD
OpenFlags
,
PSP_DEVINFO_DATA
DeviceInfoData
)
{
FIXME
(
"%p %s %p 0x%08x %p
\n
"
,
DeviceInfoSet
,
debugstr_a
(
DeviceInstanceId
),
hwndParent
,
OpenFlags
,
DeviceInfoData
);
return
FALSE
;
}
/***********************************************************************
* SetupDiOpenDeviceInfoW (SETUPAPI.@)
*/
BOOL
WINAPI
SetupDiOpenDeviceInfoW
(
HDEVINFO
DeviceInfoSet
,
PCWSTR
DeviceInstanceId
,
HWND
hwndParent
,
DWORD
OpenFlags
,
PSP_DEVINFO_DATA
DeviceInfoData
)
{
FIXME
(
"%p %s %p 0x%08x %p
\n
"
,
DeviceInfoSet
,
debugstr_w
(
DeviceInstanceId
),
hwndParent
,
OpenFlags
,
DeviceInfoData
);
return
FALSE
;
}
/***********************************************************************
* CM_Locate_DevNodeA (SETUPAPI.@)
* CM_Locate_DevNodeA (SETUPAPI.@)
*/
*/
CONFIGRET
WINAPI
CM_Locate_DevNodeA
(
PDEVINST
pdnDevInst
,
DEVINSTID_A
pDeviceID
,
ULONG
ulFlags
)
CONFIGRET
WINAPI
CM_Locate_DevNodeA
(
PDEVINST
pdnDevInst
,
DEVINSTID_A
pDeviceID
,
ULONG
ulFlags
)
...
...
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