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
f227cfaa
Commit
f227cfaa
authored
Oct 27, 2003
by
Uwe Bonnes
Committed by
Alexandre Julliard
Oct 27, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a few stubs.
parent
e961418b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
1 deletion
+32
-1
setupapi.spec
dlls/setupapi/setupapi.spec
+3
-1
stubs.c
dlls/setupapi/stubs.c
+29
-0
No files found.
dlls/setupapi/setupapi.spec
View file @
f227cfaa
...
...
@@ -96,7 +96,7 @@
@ stub SetupDiCreateDevRegKeyA
@ stub SetupDiCreateDevRegKeyW
@ stub SetupDiCreateDeviceInfoA
@ st
ub SetupDiCreateDeviceInfoList
@ st
dcall SetupDiCreateDeviceInfoList(ptr ptr)
@ stdcall SetupDiCreateDeviceInfoListExW(ptr long str ptr)
@ stub SetupDiCreateDeviceInfoW
@ stub SetupDiDeleteDevRegKey
...
...
@@ -118,6 +118,7 @@
@ stub SetupDiGetClassDevPropertySheetsA
@ stub SetupDiGetClassDevPropertySheetsW
@ stdcall SetupDiGetClassDevsA(ptr ptr long long)
@ stdcall SetupDiGetClassDevsExA(ptr str ptr long ptr str ptr)
@ stdcall SetupDiGetClassDevsExW(ptr wstr ptr long ptr wstr ptr)
@ stdcall SetupDiGetClassDevsW(ptr ptr long long)
@ stub SetupDiGetClassImageIndex
...
...
@@ -126,6 +127,7 @@
@ stub SetupDiGetClassInstallParamsA
@ stub SetupDiGetClassInstallParamsW
@ stub SetupDiGetDeviceInfoListClass
@ stdcall SetupDiGetDeviceInfoListDetailA(ptr ptr)
@ stdcall SetupDiGetDeviceInfoListDetailW(ptr ptr)
@ stub SetupDiGetDeviceInstallParamsA
@ stub SetupDiGetDeviceInstallParamsW
...
...
dlls/setupapi/stubs.c
View file @
f227cfaa
...
...
@@ -91,6 +91,15 @@ BOOL WINAPI SetupDiBuildClassInfoListExW(DWORD flags, LPGUID list, DWORD size, P
/***********************************************************************
* SetupDiGetDeviceInfoListDetailW (SETUPAPI.@)
*/
BOOL
WINAPI
SetupDiGetDeviceInfoListDetailA
(
HDEVINFO
devinfo
,
PSP_DEVINFO_DATA
devinfo_data
)
{
FIXME
(
"
\n
"
);
return
FALSE
;
}
/***********************************************************************
* SetupDiGetDeviceInfoListDetailW (SETUPAPI.@)
*/
BOOL
WINAPI
SetupDiGetDeviceInfoListDetailW
(
HDEVINFO
devinfo
,
PSP_DEVINFO_DATA
devinfo_data
)
{
FIXME
(
"
\n
"
);
...
...
@@ -98,6 +107,15 @@ BOOL WINAPI SetupDiGetDeviceInfoListDetailW(HDEVINFO devinfo, PSP_DEVINFO_DATA d
}
/***********************************************************************
* SetupDiCreateDeviceInfoListA (SETUPAPI.@)
*/
HDEVINFO
WINAPI
SetupDiCreateDeviceInfoList
(
LPGUID
class
,
HWND
parend
)
{
FIXME
(
"
\n
"
);
return
FALSE
;
}
/***********************************************************************
* SetupDiCreateDeviceInfoListExW (SETUPAPI.@)
*/
HDEVINFO
WINAPI
SetupDiCreateDeviceInfoListExW
(
LPGUID
class
,
HWND
parend
,
LPCWSTR
machine
,
PVOID
reserved
)
...
...
@@ -111,6 +129,17 @@ HDEVINFO WINAPI SetupDiCreateDeviceInfoListExW(LPGUID class, HWND parend, LPCWST
*
* NO WINAPI in description given
*/
HDEVINFO
WINAPI
SetupDiGetClassDevsExA
(
LPGUID
class
,
LPCSTR
filter
,
HWND
parent
,
DWORD
flags
,
HDEVINFO
deviceset
,
LPCSTR
machine
,
PVOID
reserved
)
{
FIXME
(
"filter %s machine %s
\n
"
,
debugstr_a
(
filter
),
debugstr_a
(
machine
));
return
FALSE
;
}
/***********************************************************************
* (SETUPAPI.@)
*
* NO WINAPI in description given
*/
HDEVINFO
WINAPI
SetupDiGetClassDevsExW
(
LPGUID
class
,
LPCWSTR
filter
,
HWND
parent
,
DWORD
flags
,
HDEVINFO
deviceset
,
LPCWSTR
machine
,
PVOID
reserved
)
{
FIXME
(
"
\n
"
);
...
...
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