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
c14fe5a6
Commit
c14fe5a6
authored
Apr 20, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Apr 20, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advpack: Implement ExecuteCabW.
parent
401becab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
5 deletions
+24
-5
install.c
dlls/advpack/install.c
+24
-5
No files found.
dlls/advpack/install.c
View file @
c14fe5a6
...
...
@@ -443,14 +443,33 @@ HRESULT WINAPI ExecuteCabA(HWND hwnd, CABINFOA* pCab, LPVOID pReserved)
* RETURNS
* Success: S_OK.
* Failure: E_FAIL.
*
* BUGS
* Unimplemented
*/
HRESULT
WINAPI
ExecuteCabW
(
HWND
hwnd
,
CABINFOW
*
pCab
,
LPVOID
pReserved
)
{
FIXME
(
"(%p, %p, %p): stub
\n
"
,
hwnd
,
pCab
,
pReserved
);
return
E_FAIL
;
ADVInfo
info
;
HRESULT
hr
;
TRACE
(
"(%p, %p, %p)
\n
"
,
hwnd
,
pCab
,
pReserved
);
ZeroMemory
(
&
info
,
sizeof
(
ADVInfo
));
if
(
pCab
->
pszCab
&&
*
pCab
->
pszCab
)
FIXME
(
"Cab archive not extracted!
\n
"
);
hr
=
install_init
(
pCab
->
pszInf
,
pCab
->
pszSection
,
pCab
->
szSrcPath
,
pCab
->
dwFlags
,
&
info
);
if
(
hr
!=
S_OK
)
goto
done
;
hr
=
spapi_install
(
&
info
);
if
(
hr
!=
S_OK
)
goto
done
;
hr
=
adv_install
(
&
info
);
done:
install_release
(
&
info
);
return
S_OK
;
}
/***********************************************************************
...
...
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