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
01b8a795
Commit
01b8a795
authored
Feb 12, 2019
by
Vijay Kiran Kamuju
Committed by
Alexandre Julliard
Feb 13, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add stub for CM_Get_Sibling.
Signed-off-by:
Vijay Kiran Kamuju
<
infyquest@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f0a18f6f
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
15 additions
and
4 deletions
+15
-4
api-ms-win-devices-config-l1-1-0.spec
...vices-config-l1-1-0/api-ms-win-devices-config-l1-1-0.spec
+1
-1
api-ms-win-devices-config-l1-1-1.spec
...vices-config-l1-1-1/api-ms-win-devices-config-l1-1-1.spec
+1
-1
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/api-ms-win-devices-config-l1-1-0/api-ms-win-devices-config-l1-1-0.spec
View file @
01b8a795
...
...
@@ -21,7 +21,7 @@
@ stub CM_Get_Device_Interface_PropertyW
@ stub CM_Get_Device_Interface_Property_KeysW
@ stdcall CM_Get_Parent(ptr long long) setupapi.CM_Get_Parent
@ st
ub
CM_Get_Sibling
@ st
dcall CM_Get_Sibling(ptr long long) setupapi.
CM_Get_Sibling
@ stdcall CM_Locate_DevNodeW(ptr wstr long) setupapi.CM_Locate_DevNodeW
@ stub CM_Open_Class_KeyW
@ stdcall CM_Open_DevNode_Key(long long long long ptr long) setupapi.CM_Open_DevNode_Key
...
...
dlls/api-ms-win-devices-config-l1-1-1/api-ms-win-devices-config-l1-1-1.spec
View file @
01b8a795
...
...
@@ -21,7 +21,7 @@
@ stub CM_Get_Device_Interface_PropertyW
@ stub CM_Get_Device_Interface_Property_KeysW
@ stdcall CM_Get_Parent(ptr long long) setupapi.CM_Get_Parent
@ st
ub
CM_Get_Sibling
@ st
dcall CM_Get_Sibling(ptr long long) setupapi.
CM_Get_Sibling
@ stdcall CM_Locate_DevNodeW(ptr wstr long) setupapi.CM_Locate_DevNodeW
@ stub CM_MapCrToWin32Err
@ stub CM_Open_Class_KeyW
...
...
dlls/cfgmgr32/cfgmgr32.spec
View file @
01b8a795
...
...
@@ -113,7 +113,7 @@
@ stub CM_Get_Res_Des_Data_Ex
@ stub CM_Get_Res_Des_Data_Size
@ stub CM_Get_Res_Des_Data_Size_Ex
@ st
ub
CM_Get_Sibling
@ st
dcall CM_Get_Sibling(ptr long long) setupapi.
CM_Get_Sibling
@ stdcall CM_Get_Sibling_Ex(ptr long long ptr) setupapi.CM_Get_Sibling_Ex
@ stdcall CM_Get_Version() setupapi.CM_Get_Version
@ stub CM_Get_Version_Ex
...
...
dlls/setupapi/setupapi.spec
View file @
01b8a795
...
...
@@ -123,7 +123,7 @@
@ stub CM_Get_Res_Des_Data_Ex
@ stub CM_Get_Res_Des_Data_Size
@ stub CM_Get_Res_Des_Data_Size_Ex
@ st
ub CM_Get_Sibling
@ st
dcall CM_Get_Sibling(ptr long long)
@ stdcall CM_Get_Sibling_Ex(ptr long long ptr)
@ stdcall CM_Get_Version()
@ stub CM_Get_Version_Ex
...
...
dlls/setupapi/stubs.c
View file @
01b8a795
...
...
@@ -501,6 +501,16 @@ CONFIGRET WINAPI CM_Get_Class_Registry_PropertyW(LPGUID class, ULONG prop, PULON
}
/***********************************************************************
* CM_Get_Sibling (SETUPAPI.@)
*/
CONFIGRET
WINAPI
CM_Get_Sibling
(
PDEVINST
pdnDevInst
,
DEVINST
DevInst
,
ULONG
ulFlags
)
{
FIXME
(
"%p 0x%08x 0x%08x: stub
\n
"
,
pdnDevInst
,
DevInst
,
ulFlags
);
return
CR_FAILURE
;
}
/***********************************************************************
* CM_Get_Sibling_Ex (SETUPAPI.@)
*/
CONFIGRET
WINAPI
CM_Get_Sibling_Ex
(
...
...
include/cfgmgr32.h
View file @
01b8a795
...
...
@@ -205,6 +205,7 @@ CMAPI CONFIGRET WINAPI CM_Get_Device_ID_List_ExW(PCWSTR,PWCHAR,ULONG,ULONG,HMACH
#define CM_Get_Device_ID_List_Ex WINELIB_NAME_AW(CM_Get_Device_ID_List_Ex)
CMAPI
CONFIGRET
WINAPI
CM_Get_Device_ID_Size
(
PULONG
,
DEVINST
,
ULONG
);
CMAPI
CONFIGRET
WINAPI
CM_Get_Device_ID_Size_Ex
(
PULONG
,
DEVINST
,
ULONG
,
HMACHINE
);
CMAPI
CONFIGRET
WINAPI
CM_Get_Sibling
(
PDEVINST
,
DEVINST
,
ULONG
);
CMAPI
CONFIGRET
WINAPI
CM_Get_Sibling_Ex
(
PDEVINST
pdnDevInst
,
DEVINST
DevInst
,
ULONG
ulFlags
,
HMACHINE
hMachine
);
CMAPI
WORD
WINAPI
CM_Get_Version
(
void
);
CMAPI
CONFIGRET
WINAPI
CM_Locate_DevNodeA
(
PDEVINST
,
DEVINSTID_A
,
ULONG
);
...
...
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