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
9df5fc58
Commit
9df5fc58
authored
May 13, 2009
by
Hans Leidekker
Committed by
Alexandre Julliard
May 13, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add stub implementations of CM_Get_Device_Interface_List_Size_ExA/W.
parent
d5009479
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
setupapi.spec
dlls/setupapi/setupapi.spec
+2
-2
stubs.c
dlls/setupapi/stubs.c
+20
-0
No files found.
dlls/setupapi/setupapi.spec
View file @
9df5fc58
...
...
@@ -95,8 +95,8 @@
@ stub CM_Get_Device_Interface_List_ExW
@ stub CM_Get_Device_Interface_List_SizeA
@ stub CM_Get_Device_Interface_List_SizeW
@ st
ub CM_Get_Device_Interface_List_Size_ExA
@ st
ub CM_Get_Device_Interface_List_Size_ExW
@ st
dcall CM_Get_Device_Interface_List_Size_ExA(ptr ptr str long ptr)
@ st
dcall CM_Get_Device_Interface_List_Size_ExW(ptr ptr wstr long ptr)
@ stub CM_Get_First_Log_Conf
@ stub CM_Get_First_Log_Conf_Ex
@ stub CM_Get_Global_State
...
...
dlls/setupapi/stubs.c
View file @
9df5fc58
...
...
@@ -285,3 +285,23 @@ CONFIGRET WINAPI CM_Locate_DevNode_ExW(PDEVINST pdnDevInst, DEVINSTID_W pDeviceI
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
,
ULONG
flags
,
HMACHINE
machine
)
{
FIXME
(
"%p %p %s 0x%08x %p: stub
\n
"
,
len
,
class
,
debugstr_a
(
id
),
flags
,
machine
);
return
CR_FAILURE
;
}
/***********************************************************************
* CM_Get_Device_Interface_List_Size_ExW (SETUPAPI.@)
*/
CONFIGRET
WINAPI
CM_Get_Device_Interface_List_Size_ExW
(
PULONG
len
,
LPGUID
class
,
DEVINSTID_W
id
,
ULONG
flags
,
HMACHINE
machine
)
{
FIXME
(
"%p %p %s 0x%08x %p: stub
\n
"
,
len
,
class
,
debugstr_w
(
id
),
flags
,
machine
);
return
CR_FAILURE
;
}
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