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
d2bc0042
Commit
d2bc0042
authored
Nov 02, 2014
by
Austin English
Committed by
Alexandre Julliard
Nov 03, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add stubs for MsiRemovePatches(A/W).
parent
b9f18b34
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
2 deletions
+20
-2
msi.c
dlls/msi/msi.c
+18
-0
msi.spec
dlls/msi/msi.spec
+2
-2
No files found.
dlls/msi/msi.c
View file @
d2bc0042
...
@@ -4244,3 +4244,21 @@ UINT WINAPI Migrate10CachedPackagesW(void* a, void* b, void* c, DWORD d)
...
@@ -4244,3 +4244,21 @@ UINT WINAPI Migrate10CachedPackagesW(void* a, void* b, void* c, DWORD d)
FIXME
(
"%p,%p,%p,%08x
\n
"
,
a
,
b
,
c
,
d
);
FIXME
(
"%p,%p,%p,%08x
\n
"
,
a
,
b
,
c
,
d
);
return
ERROR_SUCCESS
;
return
ERROR_SUCCESS
;
}
}
/***********************************************************************
* MsiRemovePatchesA [MSI.@]
*/
UINT
WINAPI
MsiRemovePatchesA
(
LPCSTR
patchlist
,
LPCSTR
product
,
INSTALLTYPE
type
,
LPCSTR
propertylist
)
{
FIXME
(
"(%s %s %d %s
\n
"
,
debugstr_a
(
patchlist
),
debugstr_a
(
product
),
type
,
debugstr_a
(
propertylist
));
return
ERROR_SUCCESS
;
}
/***********************************************************************
* MsiRemovePatchesW [MSI.@]
*/
UINT
WINAPI
MsiRemovePatchesW
(
LPCWSTR
patchlist
,
LPCWSTR
product
,
INSTALLTYPE
type
,
LPCWSTR
propertylist
)
{
FIXME
(
"(%s %s %d %s
\n
"
,
debugstr_w
(
patchlist
),
debugstr_w
(
product
),
type
,
debugstr_w
(
propertylist
));
return
ERROR_SUCCESS
;
}
dlls/msi/msi.spec
View file @
d2bc0042
...
@@ -230,8 +230,8 @@
...
@@ -230,8 +230,8 @@
234 stub MsiDeleteUserDataW
234 stub MsiDeleteUserDataW
235 stub Migrate10CachedPackagesA
235 stub Migrate10CachedPackagesA
236 stdcall Migrate10CachedPackagesW(ptr ptr ptr long)
236 stdcall Migrate10CachedPackagesW(ptr ptr ptr long)
237 st
ub MsiRemovePatchesA
237 st
dcall MsiRemovePatchesA(str str long str)
238 st
ub MsiRemovePatchesW
238 st
dcall MsiRemovePatchesW(wstr wstr long wstr)
239 stdcall MsiApplyMultiplePatchesA(str str str)
239 stdcall MsiApplyMultiplePatchesA(str str str)
240 stdcall MsiApplyMultiplePatchesW(wstr wstr wstr)
240 stdcall MsiApplyMultiplePatchesW(wstr wstr wstr)
241 stub MsiExtractPatchXMLDataA
241 stub MsiExtractPatchXMLDataA
...
...
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