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
c6e38bfe
Commit
c6e38bfe
authored
May 26, 2011
by
André Hentschel
Committed by
Alexandre Julliard
May 27, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add stubs for CM_Get_Device_ID_List_SizeA/W.
parent
0f069271
Show 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 @
c6e38bfe
...
...
@@ -68,8 +68,8 @@
@ stdcall CM_Get_Device_ID_ListW(wstr ptr long long) setupapi.CM_Get_Device_ID_ListW
@ stub CM_Get_Device_ID_List_ExA
@ stub CM_Get_Device_ID_List_ExW
@ st
ub
CM_Get_Device_ID_List_SizeA
@ st
ub
CM_Get_Device_ID_List_SizeW
@ st
dcall CM_Get_Device_ID_List_SizeA(ptr str long) setupapi.
CM_Get_Device_ID_List_SizeA
@ st
dcall CM_Get_Device_ID_List_SizeW(ptr wstr long) setupapi.
CM_Get_Device_ID_List_SizeW
@ stub CM_Get_Device_ID_List_Size_ExA
@ stub CM_Get_Device_ID_List_Size_ExW
@ stdcall CM_Get_Device_ID_Size(ptr ptr long) setupapi.CM_Get_Device_ID_Size
...
...
dlls/setupapi/setupapi.spec
View file @
c6e38bfe
...
...
@@ -79,8 +79,8 @@
@ stdcall CM_Get_Device_ID_ListW(wstr ptr long long)
@ stub CM_Get_Device_ID_List_ExA
@ stub CM_Get_Device_ID_List_ExW
@ st
ub CM_Get_Device_ID_List_SizeA
@ st
ub CM_Get_Device_ID_List_SizeW
@ st
dcall CM_Get_Device_ID_List_SizeA(ptr str long)
@ st
dcall CM_Get_Device_ID_List_SizeW(ptr wstr long)
@ stub CM_Get_Device_ID_List_Size_ExA
@ stub CM_Get_Device_ID_List_Size_ExW
@ stdcall CM_Get_Device_ID_Size(ptr ptr long)
...
...
dlls/setupapi/stubs.c
View file @
c6e38bfe
...
...
@@ -113,6 +113,26 @@ CONFIGRET WINAPI CM_Get_Device_ID_ListW(
}
/***********************************************************************
* CM_Get_Device_ID_List_SizeA (SETUPAPI.@)
*/
CONFIGRET
WINAPI
CM_Get_Device_ID_List_SizeA
(
PULONG
pulLen
,
PCSTR
pszFilter
,
ULONG
ulFlags
)
{
FIXME
(
"%p %s 0x%08x
\n
"
,
pulLen
,
debugstr_a
(
pszFilter
),
ulFlags
);
return
CR_SUCCESS
;
}
/***********************************************************************
* CM_Get_Device_ID_List_SizeW (SETUPAPI.@)
*/
CONFIGRET
WINAPI
CM_Get_Device_ID_List_SizeW
(
PULONG
pulLen
,
PCWSTR
pszFilter
,
ULONG
ulFlags
)
{
FIXME
(
"%p %s 0x%08x
\n
"
,
pulLen
,
debugstr_w
(
pszFilter
),
ulFlags
);
return
CR_SUCCESS
;
}
/***********************************************************************
* CM_Get_Parent (SETUPAPI.@)
*/
DWORD
WINAPI
CM_Get_Parent
(
PDEVINST
pdnDevInst
,
DEVINST
dnDevInst
,
ULONG
ulFlags
)
...
...
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