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
074345ed
Commit
074345ed
authored
Apr 01, 2018
by
Tim Wanders
Committed by
Alexandre Julliard
Apr 02, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Return CR_NO_SUCH_DEVNODE from CM_Get_Parent stub.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b1fa1e9a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
stubs.c
dlls/setupapi/stubs.c
+3
-2
No files found.
dlls/setupapi/stubs.c
View file @
074345ed
...
...
@@ -180,8 +180,9 @@ CONFIGRET WINAPI CM_Get_Device_ID_List_SizeW( PULONG pulLen, PCWSTR pszFilter,
DWORD
WINAPI
CM_Get_Parent
(
PDEVINST
pdnDevInst
,
DEVINST
dnDevInst
,
ULONG
ulFlags
)
{
FIXME
(
"%p 0x%08x 0x%08x stub
\n
"
,
pdnDevInst
,
dnDevInst
,
ulFlags
);
*
pdnDevInst
=
dnDevInst
;
return
CR_SUCCESS
;
if
(
pdnDevInst
)
*
pdnDevInst
=
0
;
return
CR_NO_SUCH_DEVNODE
;
}
/***********************************************************************
...
...
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