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
f272c126
Commit
f272c126
authored
Oct 07, 2014
by
André Hentschel
Committed by
Alexandre Julliard
Oct 08, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add stubs for CM_Get_Device_Interface_List_SizeA/W.
parent
35b90ece
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
4 deletions
+24
-4
cfgmgr32.spec
dlls/cfgmgr32/cfgmgr32.spec
+2
-2
setupapi.spec
dlls/setupapi/setupapi.spec
+2
-2
stubs.c
dlls/setupapi/stubs.c
+20
-0
No files found.
dlls/cfgmgr32/cfgmgr32.spec
View file @
f272c126
...
...
@@ -84,8 +84,8 @@
@ stub CM_Get_Device_Interface_ListW
@ stub CM_Get_Device_Interface_List_ExA
@ stub CM_Get_Device_Interface_List_ExW
@ st
ub
CM_Get_Device_Interface_List_SizeA
@ st
ub
CM_Get_Device_Interface_List_SizeW
@ st
dcall CM_Get_Device_Interface_List_SizeA(ptr ptr str long) setupapi.
CM_Get_Device_Interface_List_SizeA
@ st
dcall CM_Get_Device_Interface_List_SizeW(ptr ptr wstr long) setupapi.
CM_Get_Device_Interface_List_SizeW
@ stdcall CM_Get_Device_Interface_List_Size_ExA(ptr ptr str long ptr) setupapi.CM_Get_Device_Interface_List_Size_ExA
@ stdcall CM_Get_Device_Interface_List_Size_ExW(ptr ptr wstr long ptr) setupapi.CM_Get_Device_Interface_List_Size_ExW
@ stub CM_Get_First_Log_Conf
...
...
dlls/setupapi/setupapi.spec
View file @
f272c126
...
...
@@ -95,8 +95,8 @@
@ stub CM_Get_Device_Interface_ListW
@ stub CM_Get_Device_Interface_List_ExA
@ stub CM_Get_Device_Interface_List_ExW
@ st
ub CM_Get_Device_Interface_List_SizeA
@ st
ub CM_Get_Device_Interface_List_SizeW
@ st
dcall CM_Get_Device_Interface_List_SizeA(ptr ptr str long)
@ st
dcall CM_Get_Device_Interface_List_SizeW(ptr ptr wstr long)
@ stdcall CM_Get_Device_Interface_List_Size_ExA(ptr ptr str long ptr)
@ stdcall CM_Get_Device_Interface_List_Size_ExW(ptr ptr wstr long ptr)
@ stub CM_Get_First_Log_Conf
...
...
dlls/setupapi/stubs.c
View file @
f272c126
...
...
@@ -367,6 +367,26 @@ CONFIGRET WINAPI CM_Locate_DevNode_ExW(PDEVINST pdnDevInst, DEVINSTID_W pDeviceI
}
/***********************************************************************
* CM_Get_Device_Interface_List_SizeA (SETUPAPI.@)
*/
CONFIGRET
WINAPI
CM_Get_Device_Interface_List_SizeA
(
PULONG
len
,
LPGUID
class
,
DEVINSTID_A
id
,
ULONG
flags
)
{
FIXME
(
"%p %p %s 0x%08x: stub
\n
"
,
len
,
class
,
debugstr_a
(
id
),
flags
);
return
CR_FAILURE
;
}
/***********************************************************************
* CM_Get_Device_Interface_List_SizeW (SETUPAPI.@)
*/
CONFIGRET
WINAPI
CM_Get_Device_Interface_List_SizeW
(
PULONG
len
,
LPGUID
class
,
DEVINSTID_W
id
,
ULONG
flags
)
{
FIXME
(
"%p %p %s 0x%08x: stub
\n
"
,
len
,
class
,
debugstr_w
(
id
),
flags
);
return
CR_FAILURE
;
}
/***********************************************************************
* CM_Get_Device_Interface_List_Size_ExA (SETUPAPI.@)
*/
CONFIGRET
WINAPI
CM_Get_Device_Interface_List_Size_ExA
(
PULONG
len
,
LPGUID
class
,
DEVINSTID_A
id
,
...
...
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