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
f1b94dc1
Commit
f1b94dc1
authored
Nov 18, 2019
by
Derek Lesho
Committed by
Alexandre Julliard
Nov 19, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add SetupGetInfDriverStoreLocationW stub.
Signed-off-by:
Derek Lesho
<
dlesho@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e8ef4c0f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
query.c
dlls/setupapi/query.c
+14
-0
setupapi.spec
dlls/setupapi/setupapi.spec
+1
-0
No files found.
dlls/setupapi/query.c
View file @
f1b94dc1
...
...
@@ -717,3 +717,17 @@ BOOL WINAPI SetupQueryInfOriginalFileInformationW(
return
TRUE
;
}
/***********************************************************************
* SetupGetInfDriverStoreLocationW (SETUPAPI.@)
*/
BOOL
WINAPI
SetupGetInfDriverStoreLocationW
(
PCWSTR
FileName
,
PSP_ALTPLATFORM_INFO
AlternativePlatformInfo
,
PCWSTR
LocaleName
,
PWSTR
ReturnBuffer
,
DWORD
ReturnBufferSize
,
PDWORD
RequiredSize
)
{
FIXME
(
"stub: %s %p %s %p %u %p
\n
"
,
debugstr_w
(
FileName
),
AlternativePlatformInfo
,
debugstr_w
(
LocaleName
),
ReturnBuffer
,
ReturnBufferSize
,
RequiredSize
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
dlls/setupapi/setupapi.spec
View file @
f1b94dc1
...
...
@@ -421,6 +421,7 @@
@ stdcall SetupGetFileCompressionInfoW(wstr ptr ptr ptr ptr)
@ stdcall SetupGetFileQueueCount(long long ptr)
@ stdcall SetupGetFileQueueFlags(long ptr)
@ stdcall SetupGetInfDriverStoreLocationW(wstr ptr wstr ptr long ptr)
@ stdcall SetupGetInfFileListA(str long ptr long ptr)
@ stdcall SetupGetInfFileListW(wstr long ptr long ptr)
@ stdcall SetupGetInfInformationA(ptr long ptr long ptr)
...
...
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