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
724a4b36
Commit
724a4b36
authored
Mar 30, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Mar 30, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advpack: Forward LaunchINFSectionExA to its Unicode counterpart.
parent
93fc6d45
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
2 deletions
+23
-2
install.c
dlls/advpack/install.c
+23
-2
No files found.
dlls/advpack/install.c
View file @
724a4b36
...
@@ -138,6 +138,27 @@ INT WINAPI LaunchINFSectionA( HWND hWnd, HINSTANCE hInst, LPSTR cmdline, INT sho
...
@@ -138,6 +138,27 @@ INT WINAPI LaunchINFSectionA( HWND hWnd, HINSTANCE hInst, LPSTR cmdline, INT sho
/***********************************************************************
/***********************************************************************
* LaunchINFSectionExA (ADVPACK.@)
* LaunchINFSectionExA (ADVPACK.@)
*
*
* See LaunchINFSectionExW.
*/
HRESULT
WINAPI
LaunchINFSectionExA
(
HWND
hWnd
,
HINSTANCE
hInst
,
LPSTR
cmdline
,
INT
show
)
{
UNICODE_STRING
cmd
;
HRESULT
hr
;
TRACE
(
"(%p, %p, %s, %d): stub
\n
"
,
hWnd
,
hInst
,
debugstr_a
(
cmdline
),
show
);
RtlCreateUnicodeStringFromAsciiz
(
&
cmd
,
cmdline
);
hr
=
LaunchINFSectionExW
(
hWnd
,
hInst
,
cmd
.
Buffer
,
show
);
RtlFreeUnicodeString
(
&
cmd
);
return
hr
;
}
/***********************************************************************
* LaunchINFSectionExW (ADVPACK.@)
*
* Installs an INF section with BACKUP/ROLLBACK capabilities.
* Installs an INF section with BACKUP/ROLLBACK capabilities.
*
*
* PARAMS
* PARAMS
...
@@ -162,9 +183,9 @@ INT WINAPI LaunchINFSectionA( HWND hWnd, HINSTANCE hInst, LPSTR cmdline, INT sho
...
@@ -162,9 +183,9 @@ INT WINAPI LaunchINFSectionA( HWND hWnd, HINSTANCE hInst, LPSTR cmdline, INT sho
* BUGS
* BUGS
* Unimplemented.
* Unimplemented.
*/
*/
HRESULT
WINAPI
LaunchINFSectionEx
A
(
HWND
hWnd
,
HINSTANCE
hInst
,
LPSTR
cmdline
,
INT
show
)
HRESULT
WINAPI
LaunchINFSectionEx
W
(
HWND
hWnd
,
HINSTANCE
hInst
,
LPWSTR
cmdline
,
INT
show
)
{
{
FIXME
(
"(%p
%p %s %d): stub
\n
"
,
hWnd
,
hInst
,
debugstr_a
(
cmdline
),
show
);
FIXME
(
"(%p
, %p, %s, %d): stub
\n
"
,
hWnd
,
hInst
,
debugstr_w
(
cmdline
),
show
);
return
E_FAIL
;
return
E_FAIL
;
}
}
...
...
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