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
4115598d
Commit
4115598d
authored
Nov 07, 2007
by
Juan Lang
Committed by
Alexandre Julliard
Nov 08, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add stubs for CM_Get_Device_IDA and CM_Get_Device_ID_Size.
parent
c5d5c5b6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
2 deletions
+24
-2
setupapi.spec
dlls/setupapi/setupapi.spec
+2
-2
stubs.c
dlls/setupapi/stubs.c
+22
-0
No files found.
dlls/setupapi/setupapi.spec
View file @
4115598d
...
...
@@ -71,7 +71,7 @@
@ stub CM_Get_DevNode_Registry_Property_ExW
@ stub CM_Get_DevNode_Status
@ stub CM_Get_DevNode_Status_Ex
@ st
ub CM_Get_Device_IDA
@ st
dcall CM_Get_Device_IDA(ptr ptr long long)
@ stub CM_Get_Device_IDW
@ stub CM_Get_Device_ID_ExA
@ stub CM_Get_Device_ID_ExW
...
...
@@ -83,7 +83,7 @@
@ stub CM_Get_Device_ID_List_SizeW
@ stub CM_Get_Device_ID_List_Size_ExA
@ stub CM_Get_Device_ID_List_Size_ExW
@ st
ub CM_Get_Device_ID_Size
@ st
dcall CM_Get_Device_ID_Size(ptr ptr long)
@ stub CM_Get_Device_ID_Size_Ex
@ stub CM_Get_Device_Interface_AliasA
@ stub CM_Get_Device_Interface_AliasW
...
...
dlls/setupapi/stubs.c
View file @
4115598d
...
...
@@ -71,6 +71,17 @@ DWORD WINAPI CM_Disconnect_Machine(DWORD handle)
}
/***********************************************************************
* CM_Get_Device_IDA (SETUPAPI.@)
*/
DWORD
WINAPI
CM_Get_Device_IDA
(
LPVOID
dnDevInst
,
LPSTR
Buffer
,
ULONG
BufferLen
,
ULONG
ulFlags
)
{
FIXME
(
"%p, %p, %u %u
\n
"
,
dnDevInst
,
Buffer
,
BufferLen
,
ulFlags
);
Buffer
[
0
]
=
0
;
return
CR_SUCCESS
;
}
/***********************************************************************
* CM_Get_Device_ID_ListA (SETUPAPI.@)
*/
...
...
@@ -83,6 +94,17 @@ DWORD WINAPI CM_Get_Device_ID_ListA(
}
/***********************************************************************
* CM_Get_Device_ID_Size (SETUPAPI.@)
*/
DWORD
WINAPI
CM_Get_Device_ID_Size
(
ULONG
*
pulLen
,
LPVOID
dnDevInst
,
ULONG
ulFlags
)
{
FIXME
(
"%p %p %u
\n
"
,
pulLen
,
dnDevInst
,
ulFlags
);
*
pulLen
=
1
;
return
CR_SUCCESS
;
}
/***********************************************************************
* SetupInitializeFileLogW(SETUPAPI.@)
*/
HSPFILELOG
WINAPI
SetupInitializeFileLogW
(
LPCWSTR
LogFileName
,
DWORD
Flags
)
...
...
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