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
b74f4d92
Commit
b74f4d92
authored
Jul 31, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Jul 31, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add a stub implementation of SetupGetSourceInfo.
parent
98d14864
Show 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 @
b74f4d92
...
...
@@ -416,8 +416,8 @@
@ stub SetupGetSourceFileLocationW
@ stub SetupGetSourceFileSizeA
@ stub SetupGetSourceFileSizeW
@ st
ub SetupGetSourceInfoA
@ st
ub SetupGetSourceInfoW
@ st
dcall SetupGetSourceInfoA(ptr long long str long ptr)
@ st
dcall SetupGetSourceInfoW(ptr long long wstr long ptr)
@ stdcall SetupGetStringFieldA(ptr long ptr long ptr)
@ stdcall SetupGetStringFieldW(ptr long ptr long ptr)
@ stub SetupGetTargetPathA
...
...
dlls/setupapi/stubs.c
View file @
b74f4d92
...
...
@@ -140,6 +140,28 @@ BOOL WINAPI SetupCopyOEMInfW(PCWSTR sourceinffile, PCWSTR sourcemedialoc,
}
/***********************************************************************
* SetupGetSourceInfoA (SETUPAPI.@)
*/
BOOL
WINAPI
SetupGetSourceInfoA
(
HINF
InfHandle
,
UINT
SourceId
,
UINT
InfoDesired
,
PSTR
ReturnBuffer
,
DWORD
ReturnBufferSize
,
LPDWORD
RequiredSize
)
{
FIXME
(
"(%p, %d, %d, %p, %ld, %p): stub
\n
"
,
InfHandle
,
SourceId
,
InfoDesired
,
ReturnBuffer
,
ReturnBufferSize
,
RequiredSize
);
return
FALSE
;
}
/***********************************************************************
* SetupGetSourceInfoW (SETUPAPI.@)
*/
BOOL
WINAPI
SetupGetSourceInfoW
(
HINF
InfHandle
,
UINT
SourceId
,
UINT
InfoDesired
,
PWSTR
ReturnBuffer
,
DWORD
ReturnBufferSize
,
LPDWORD
RequiredSize
)
{
FIXME
(
"(%p, %d, %d, %p, %ld, %p): stub
\n
"
,
InfHandle
,
SourceId
,
InfoDesired
,
ReturnBuffer
,
ReturnBufferSize
,
RequiredSize
);
return
FALSE
;
}
/***********************************************************************
* SetupInitializeFileLogW(SETUPAPI.@)
*/
HANDLE
WINAPI
SetupInitializeFileLogW
(
LPWSTR
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