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
a37c4262
Commit
a37c4262
authored
May 22, 2019
by
Zebediah Figura
Committed by
Alexandre Julliard
May 23, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Implement SetupDiInstallDeviceInterfaces().
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
94256fcc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
77 additions
and
7 deletions
+77
-7
devinst.c
dlls/setupapi/devinst.c
+77
-7
No files found.
dlls/setupapi/devinst.c
View file @
a37c4262
...
@@ -2619,6 +2619,11 @@ HKEY WINAPI SetupDiCreateDeviceInterfaceRegKeyA(
...
@@ -2619,6 +2619,11 @@ HKEY WINAPI SetupDiCreateDeviceInterfaceRegKeyA(
return
key
;
return
key
;
}
}
static
LONG
create_iface_key
(
const
struct
device_iface
*
iface
,
REGSAM
access
,
HKEY
*
key
)
{
return
RegCreateKeyExW
(
iface
->
refstr_key
,
DeviceParameters
,
0
,
NULL
,
0
,
access
,
NULL
,
key
,
NULL
);
}
/***********************************************************************
/***********************************************************************
* SetupDiCreateDeviceInterfaceRegKeyW (SETUPAPI.@)
* SetupDiCreateDeviceInterfaceRegKeyW (SETUPAPI.@)
*/
*/
...
@@ -2642,8 +2647,7 @@ HKEY WINAPI SetupDiCreateDeviceInterfaceRegKeyW(HDEVINFO devinfo,
...
@@ -2642,8 +2647,7 @@ HKEY WINAPI SetupDiCreateDeviceInterfaceRegKeyW(HDEVINFO devinfo,
return
INVALID_HANDLE_VALUE
;
return
INVALID_HANDLE_VALUE
;
}
}
ret
=
RegCreateKeyExW
(
iface
->
refstr_key
,
DeviceParameters
,
0
,
NULL
,
0
,
access
,
ret
=
create_iface_key
(
iface
,
access
,
&
params_key
);
NULL
,
&
params_key
,
NULL
);
if
(
ret
)
if
(
ret
)
{
{
SetLastError
(
ret
);
SetLastError
(
ret
);
...
@@ -3678,9 +3682,10 @@ BOOL WINAPI SetupDiCallClassInstaller(DI_FUNCTION function, HDEVINFO devinfo, SP
...
@@ -3678,9 +3682,10 @@ BOOL WINAPI SetupDiCallClassInstaller(DI_FUNCTION function, HDEVINFO devinfo, SP
return
SetupDiRegisterCoDeviceInstallers
(
devinfo
,
device_data
);
return
SetupDiRegisterCoDeviceInstallers
(
devinfo
,
device_data
);
case
DIF_INSTALLDEVICEFILES
:
case
DIF_INSTALLDEVICEFILES
:
return
SetupDiInstallDriverFiles
(
devinfo
,
device_data
);
return
SetupDiInstallDriverFiles
(
devinfo
,
device_data
);
case
DIF_INSTALLINTERFACES
:
return
SetupDiInstallDeviceInterfaces
(
devinfo
,
device_data
);
case
DIF_FINISHINSTALL_ACTION
:
case
DIF_FINISHINSTALL_ACTION
:
case
DIF_INSTALLDEVICE
:
case
DIF_INSTALLDEVICE
:
case
DIF_INSTALLINTERFACES
:
case
DIF_PROPERTYCHANGE
:
case
DIF_PROPERTYCHANGE
:
case
DIF_SELECTDEVICE
:
case
DIF_SELECTDEVICE
:
case
DIF_UNREMOVE
:
case
DIF_UNREMOVE
:
...
@@ -4227,12 +4232,77 @@ BOOL WINAPI SetupDiGetDevicePropertyW(HDEVINFO devinfo, PSP_DEVINFO_DATA device_
...
@@ -4227,12 +4232,77 @@ BOOL WINAPI SetupDiGetDevicePropertyW(HDEVINFO devinfo, PSP_DEVINFO_DATA device_
/***********************************************************************
/***********************************************************************
* SetupDiInstallDeviceInterfaces (SETUPAPI.@)
* SetupDiInstallDeviceInterfaces (SETUPAPI.@)
*/
*/
BOOL
WINAPI
SetupDiInstallDeviceInterfaces
(
HDEVINFO
dev
,
PSP_DEVINFO_DATA
info
_data
)
BOOL
WINAPI
SetupDiInstallDeviceInterfaces
(
HDEVINFO
dev
info
,
SP_DEVINFO_DATA
*
device
_data
)
{
{
FIXME
(
"%p, %p stub
\n
"
,
dev
,
info_data
);
WCHAR
section
[
LINE_LEN
],
section_ext
[
LINE_LEN
],
iface_section
[
LINE_LEN
],
refstr
[
LINE_LEN
],
guidstr
[
39
];
UINT
install_flags
=
SPINST_ALL
;
struct
device_iface
*
iface
;
struct
device
*
device
;
struct
driver
*
driver
;
void
*
callback_ctx
;
GUID
iface_guid
;
INFCONTEXT
ctx
;
HKEY
iface_key
;
HINF
hinf
;
LONG
l
;
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
TRACE
(
"devinfo %p, device_data %p.
\n
"
,
devinfo
,
device_data
);
return
FALSE
;
if
(
!
(
device
=
get_device
(
devinfo
,
device_data
)))
return
FALSE
;
if
(
!
(
driver
=
device
->
selected_driver
))
{
ERR
(
"No driver selected for device %p.
\n
"
,
devinfo
);
SetLastError
(
ERROR_NO_DRIVER_SELECTED
);
return
FALSE
;
}
if
((
hinf
=
SetupOpenInfFileW
(
driver
->
inf_path
,
NULL
,
INF_STYLE_WIN4
,
NULL
))
==
INVALID_HANDLE_VALUE
)
return
FALSE
;
SetupFindFirstLineW
(
hinf
,
driver
->
mfg_key
,
driver
->
description
,
&
ctx
);
SetupGetStringFieldW
(
&
ctx
,
1
,
section
,
ARRAY_SIZE
(
section
),
NULL
);
SetupDiGetActualSectionToInstallW
(
hinf
,
section
,
section_ext
,
ARRAY_SIZE
(
section_ext
),
NULL
,
NULL
);
if
(
device
->
params
.
Flags
&
DI_NOFILECOPY
)
install_flags
&=
~
SPINST_FILES
;
callback_ctx
=
SetupInitDefaultQueueCallback
(
NULL
);
lstrcatW
(
section_ext
,
dotInterfaces
);
if
(
SetupFindFirstLineW
(
hinf
,
section_ext
,
AddInterface
,
&
ctx
))
{
do
{
SetupGetStringFieldW
(
&
ctx
,
1
,
guidstr
,
ARRAY_SIZE
(
guidstr
),
NULL
);
SetupGetStringFieldW
(
&
ctx
,
2
,
refstr
,
ARRAY_SIZE
(
refstr
),
NULL
);
guidstr
[
37
]
=
0
;
UuidFromStringW
(
&
guidstr
[
1
],
&
iface_guid
);
if
(
!
(
iface
=
SETUPDI_CreateDeviceInterface
(
device
,
&
iface_guid
,
refstr
)))
{
ERR
(
"Failed to create device interface, error %#x.
\n
"
,
GetLastError
());
continue
;
}
if
((
l
=
create_iface_key
(
iface
,
KEY_ALL_ACCESS
,
&
iface_key
)))
{
ERR
(
"Failed to create interface key, error %u.
\n
"
,
l
);
continue
;
}
SetupGetStringFieldW
(
&
ctx
,
3
,
iface_section
,
ARRAY_SIZE
(
iface_section
),
NULL
);
SetupInstallFromInfSectionW
(
NULL
,
hinf
,
iface_section
,
install_flags
,
iface_key
,
NULL
,
SP_COPY_NEWER_ONLY
,
SetupDefaultQueueCallbackW
,
callback_ctx
,
NULL
,
NULL
);
RegCloseKey
(
iface_key
);
}
while
(
SetupFindNextMatchLineW
(
&
ctx
,
AddInterface
,
&
ctx
));
}
SetupTermDefaultQueueCallback
(
callback_ctx
);
SetupCloseInfFile
(
hinf
);
return
TRUE
;
}
}
/***********************************************************************
/***********************************************************************
...
...
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