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
8fffb22f
Commit
8fffb22f
authored
Jan 06, 2011
by
Stefan Leichter
Committed by
Alexandre Julliard
Jan 07, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add stub for SetupDiSetSelectedDevice.
parent
3b2b23d8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
setupapi.spec
dlls/setupapi/setupapi.spec
+1
-1
stubs.c
dlls/setupapi/stubs.c
+10
-0
setupapi.h
include/setupapi.h
+1
-0
No files found.
dlls/setupapi/setupapi.spec
View file @
8fffb22f
...
...
@@ -387,7 +387,7 @@
@ stdcall SetupDiSetDeviceRegistryPropertyW(ptr ptr long ptr ptr)
@ stub SetupDiSetDriverInstallParamsA
@ stub SetupDiSetDriverInstallParamsW
@ st
ub SetupDiSetSelectedDevice
@ st
dcall SetupDiSetSelectedDevice(ptr ptr)
@ stub SetupDiSetSelectedDriverA
@ stub SetupDiSetSelectedDriverW
@ stub SetupDiUnremoveDevice
...
...
dlls/setupapi/stubs.c
View file @
8fffb22f
...
...
@@ -426,3 +426,13 @@ BOOL WINAPI SetupDiLoadClassIcon(const GUID *ClassGuid, HICON *LargeIcon, PINT M
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* SetupDiSetSelectedDevice (SETUPAPI.@)
*/
BOOL
WINAPI
SetupDiSetSelectedDevice
(
HDEVINFO
SetupDiSetSelectedDevice
,
PSP_DEVINFO_DATA
DeviceInfoData
)
{
FIXME
(
"(%p, %p) stub
\n
"
,
SetupDiSetSelectedDevice
,
DeviceInfoData
);
return
TRUE
;
}
include/setupapi.h
View file @
8fffb22f
...
...
@@ -1635,6 +1635,7 @@ BOOL WINAPI SetupDiSetDeviceRegistryPropertyW(HDEVINFO, PSP_DEVINFO_DATA, DW
BOOL
WINAPI
SetupDiSetDriverInstallParamsA
(
HDEVINFO
,
PSP_DEVINFO_DATA
,
PSP_DRVINFO_DATA_A
,
PSP_DRVINSTALL_PARAMS
);
BOOL
WINAPI
SetupDiSetDriverInstallParamsW
(
HDEVINFO
,
PSP_DEVINFO_DATA
,
PSP_DRVINFO_DATA_W
,
PSP_DRVINSTALL_PARAMS
);
#define SetupDiSetDriverInstallParams WINELIB_NAME_AW(SetupDiSetDriverInstallParams)
BOOL
WINAPI
SetupDiSetSelectedDevice
(
HDEVINFO
,
PSP_DEVINFO_DATA
);
BOOL
WINAPI
SetupDiSetSelectedDriverA
(
HDEVINFO
,
PSP_DEVINFO_DATA
,
PSP_DRVINFO_DATA_A
);
BOOL
WINAPI
SetupDiSetSelectedDriverW
(
HDEVINFO
,
PSP_DEVINFO_DATA
,
PSP_DRVINFO_DATA_W
);
#define SetupDiSetSelectedDriver WINELIB_NAME_AW(SetupDiSetSelectedDriver)
...
...
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