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
afa920a7
Commit
afa920a7
authored
Jan 27, 2017
by
Andrey Gusev
Committed by
Alexandre Julliard
Jan 30, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add CM_Get_Child_Ex stub.
Signed-off-by:
Andrey Gusev
<
andrey.goosev@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7e635876
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
2 deletions
+13
-2
cfgmgr32.spec
dlls/cfgmgr32/cfgmgr32.spec
+1
-1
setupapi.spec
dlls/setupapi/setupapi.spec
+1
-1
stubs.c
dlls/setupapi/stubs.c
+10
-0
cfgmgr32.h
include/cfgmgr32.h
+1
-0
No files found.
dlls/cfgmgr32/cfgmgr32.spec
View file @
afa920a7
...
...
@@ -43,7 +43,7 @@
@ stub CM_Free_Res_Des_Ex
@ stub CM_Free_Res_Des_Handle
@ stdcall CM_Get_Child(ptr long long) setupapi.CM_Get_Child
@ st
ub
CM_Get_Child_Ex
@ st
dcall CM_Get_Child_Ex(ptr long long ptr) setupapi.
CM_Get_Child_Ex
@ stub CM_Get_Class_Key_NameA
@ stub CM_Get_Class_Key_NameW
@ stub CM_Get_Class_Key_Name_ExA
...
...
dlls/setupapi/setupapi.spec
View file @
afa920a7
...
...
@@ -54,7 +54,7 @@
@ stub CM_Free_Res_Des_Ex
@ stub CM_Free_Res_Des_Handle
@ stdcall CM_Get_Child(ptr long long)
@ st
ub CM_Get_Child_Ex
@ st
dcall CM_Get_Child_Ex(ptr long long ptr)
@ stub CM_Get_Class_Key_NameA
@ stub CM_Get_Class_Key_NameW
@ stub CM_Get_Class_Key_Name_ExA
...
...
dlls/setupapi/stubs.c
View file @
afa920a7
...
...
@@ -101,6 +101,16 @@ CONFIGRET WINAPI CM_Get_Child(
}
/***********************************************************************
* CM_Get_Child_Ex (SETUPAPI.@)
*/
CONFIGRET
WINAPI
CM_Get_Child_Ex
(
PDEVINST
pdnDevInst
,
DEVINST
dnDevInst
,
ULONG
ulFlags
,
HMACHINE
hMachine
)
{
FIXME
(
"%p 0x%08x 0x%08x %p: stub
\n
"
,
pdnDevInst
,
dnDevInst
,
ulFlags
,
hMachine
);
return
CR_SUCCESS
;
}
/***********************************************************************
* CM_Get_Device_ID_ExA (SETUPAPI.@)
*/
DWORD
WINAPI
CM_Get_Device_ID_ExA
(
...
...
include/cfgmgr32.h
View file @
afa920a7
...
...
@@ -210,6 +210,7 @@ CMAPI CONFIGRET WINAPI CM_Locate_DevNodeW(PDEVINST,DEVINSTID_W,ULONG);
CMAPI
CONFIGRET
WINAPI
CM_Open_DevNode_Key
(
DEVINST
dnDevInst
,
REGSAM
access
,
ULONG
ulHardwareProfile
,
REGDISPOSITION
disposition
,
PHKEY
phkDevice
,
ULONG
ulFlags
);
CMAPI
CONFIGRET
WINAPI
CM_Get_Child
(
PDEVINST
pdnDevInst
,
DEVINST
dnDevInst
,
ULONG
ulFlags
);
CMAPI
CONFIGRET
WINAPI
CM_Get_Child_Ex
(
PDEVINST
pdnDevInst
,
DEVINST
dnDevInst
,
ULONG
ulFlags
,
HMACHINE
hMachine
);
#ifdef __cplusplus
}
...
...
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