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
852cd999
Commit
852cd999
authored
Mar 16, 2017
by
Austin English
Committed by
Alexandre Julliard
Mar 17, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add SetupDiEnumDriverInfoA/W stubs.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d6456755
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 @
852cd999
...
...
@@ -311,8 +311,8 @@
@ stdcall SetupDiDrawMiniIcon(ptr int128 long long)
@ stdcall SetupDiEnumDeviceInfo(long long ptr)
@ stdcall SetupDiEnumDeviceInterfaces(long ptr ptr long ptr)
@ st
ub SetupDiEnumDriverInfoA
@ st
ub SetupDiEnumDriverInfoW
@ st
dcall SetupDiEnumDriverInfoA(ptr ptr long long ptr)
@ st
dcall SetupDiEnumDriverInfoW(ptr ptr long long ptr)
@ stdcall SetupDiGetActualSectionToInstallA(long str str long ptr ptr)
@ stdcall SetupDiGetActualSectionToInstallW(long wstr wstr long ptr ptr)
@ stdcall SetupDiGetClassBitmapIndex(ptr ptr)
...
...
dlls/setupapi/stubs.c
View file @
852cd999
...
...
@@ -675,3 +675,25 @@ BOOL WINAPI SetupDiSetSelectedDevice(HDEVINFO SetupDiSetSelectedDevice, PSP_DEVI
return
TRUE
;
}
/***********************************************************************
* SetupDiEnumDriverInfoA (SETUPAPI.@)
*/
BOOL
WINAPI
SetupDiEnumDriverInfoA
(
HDEVINFO
DeviceInfoSet
,
PSP_DEVINFO_DATA
DeviceInfoData
,
DWORD
DriverType
,
DWORD
MemberIndex
,
PSP_DRVINFO_DATA_A
DriverInfoData
)
{
FIXME
(
"(%p, %p, 0x%x, %u, %p stub
\n
"
,
DeviceInfoSet
,
DeviceInfoData
,
DriverType
,
MemberIndex
,
DriverInfoData
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* SetupDiEnumDriverInfoW (SETUPAPI.@)
*/
BOOL
WINAPI
SetupDiEnumDriverInfoW
(
HDEVINFO
DeviceInfoSet
,
PSP_DEVINFO_DATA
DeviceInfoData
,
DWORD
DriverType
,
DWORD
MemberIndex
,
PSP_DRVINFO_DATA_W
DriverInfoData
)
{
FIXME
(
"(%p, %p, 0x%x, %u, %p stub
\n
"
,
DeviceInfoSet
,
DeviceInfoData
,
DriverType
,
MemberIndex
,
DriverInfoData
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
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