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
41aefd8c
Commit
41aefd8c
authored
Jul 19, 2006
by
Christian Gmeiner
Committed by
Alexandre Julliard
Jul 20, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add stub for SetupDiCreateDeviceInfoW.
parent
bb80e228
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
1 deletion
+22
-1
devinst.c
dlls/setupapi/devinst.c
+21
-0
setupapi.spec
dlls/setupapi/setupapi.spec
+1
-1
No files found.
dlls/setupapi/devinst.c
View file @
41aefd8c
...
...
@@ -697,6 +697,27 @@ SetupDiCreateDeviceInfoListExW(const GUID *ClassGuid,
}
/***********************************************************************
* SetupDiCreateDeviceInfoW (SETUPAPI.@)
*/
BOOL
WINAPI
SetupDiCreateDeviceInfoW
(
HDEVINFO
DeviceInfoSet
,
PCWSTR
DeviceName
,
CONST
GUID
*
ClassGuid
,
PCWSTR
DeviceDescription
,
HWND
hwndParent
,
DWORD
CreationFlags
,
PSP_DEVINFO_DATA
DeviceInfoData
)
{
TRACE
(
"%p %s %s %s %p %lx %p
\n
"
,
DeviceInfoSet
,
debugstr_w
(
DeviceName
),
debugstr_guid
(
ClassGuid
),
debugstr_w
(
DeviceDescription
),
hwndParent
,
CreationFlags
,
DeviceInfoData
);
FIXME
(
"stub"
);
return
FALSE
;
}
/***********************************************************************
* SetupDiEnumDeviceInfo (SETUPAPI.@)
*/
BOOL
WINAPI
SetupDiEnumDeviceInfo
(
...
...
dlls/setupapi/setupapi.spec
View file @
41aefd8c
...
...
@@ -286,7 +286,7 @@
@ stdcall SetupDiCreateDeviceInfoList(ptr ptr)
@ stdcall SetupDiCreateDeviceInfoListExA(ptr long str ptr)
@ stdcall SetupDiCreateDeviceInfoListExW(ptr long str ptr)
@ st
ub SetupDiCreateDeviceInfoW
@ st
dcall SetupDiCreateDeviceInfoW(long wstr ptr wstr long long ptr)
@ stub SetupDiDeleteDevRegKey
@ stub SetupDiDeleteDeviceInfo
@ stub SetupDiDeleteDeviceInterfaceData
...
...
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