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
f14eecde
Commit
f14eecde
authored
Mar 26, 2008
by
Paul Vriens
Committed by
Alexandre Julliard
Mar 26, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Forward SetupInstallServicesFromInfSectionA to W-function.
parent
0936601f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
install.c
dlls/setupapi/install.c
+12
-2
No files found.
dlls/setupapi/install.c
View file @
f14eecde
...
@@ -1080,6 +1080,16 @@ BOOL WINAPI SetupInstallServicesFromInfSectionW( HINF Inf, PCWSTR SectionName, D
...
@@ -1080,6 +1080,16 @@ BOOL WINAPI SetupInstallServicesFromInfSectionW( HINF Inf, PCWSTR SectionName, D
*/
*/
BOOL
WINAPI
SetupInstallServicesFromInfSectionA
(
HINF
Inf
,
PCSTR
SectionName
,
DWORD
Flags
)
BOOL
WINAPI
SetupInstallServicesFromInfSectionA
(
HINF
Inf
,
PCSTR
SectionName
,
DWORD
Flags
)
{
{
FIXME
(
"(%p, %s, %d) stub!
\n
"
,
Inf
,
debugstr_a
(
SectionName
),
Flags
);
UNICODE_STRING
SectionNameW
;
return
FALSE
;
BOOL
ret
=
FALSE
;
if
(
RtlCreateUnicodeStringFromAsciiz
(
&
SectionNameW
,
SectionName
))
{
ret
=
SetupInstallServicesFromInfSectionW
(
Inf
,
SectionNameW
.
Buffer
,
Flags
);
RtlFreeUnicodeString
(
&
SectionNameW
);
}
else
SetLastError
(
ERROR_NOT_ENOUGH_MEMORY
);
return
ret
;
}
}
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