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
8fec17b5
Commit
8fec17b5
authored
Jan 27, 2009
by
Hans Leidekker
Committed by
Alexandre Julliard
Jan 27, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add stub implementations of MsiSourceListClearSourceA/W.
parent
7bfa0d2c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
2 deletions
+26
-2
msi.spec
dlls/msi/msi.spec
+2
-2
source.c
dlls/msi/source.c
+24
-0
No files found.
dlls/msi/msi.spec
View file @
8fec17b5
...
...
@@ -250,8 +250,8 @@
254 stub MsiDeterminePatchSequenceW
255 stdcall MsiSourceListAddSourceExA(str str long long str long)
256 stdcall MsiSourceListAddSourceExW(wstr wstr long long wstr long)
257 st
ub MsiSourceListClearSourceA
258 st
ub MsiSourceListClearSourceW
257 st
dcall MsiSourceListClearSourceA(str str long long str)
258 st
dcall MsiSourceListClearSourceW(wstr wstr long long wstr)
259 stub MsiSourceListClearAllExA
260 stub MsiSourceListClearAllExW
261 stub MsiSourceListForceResolutionExA
...
...
dlls/msi/source.c
View file @
8fec17b5
...
...
@@ -1314,3 +1314,27 @@ UINT WINAPI MsiSourceListClearAllW( LPCWSTR szProduct, LPCWSTR szUserName, DWORD
FIXME
(
"(%s %s %d)
\n
"
,
debugstr_w
(
szProduct
),
debugstr_w
(
szUserName
),
dwReserved
);
return
ERROR_SUCCESS
;
}
/******************************************************************
* MsiSourceListClearSourceA (MSI.@)
*/
UINT
WINAPI
MsiSourceListClearSourceA
(
LPCSTR
szProductCodeOrPatchCode
,
LPCSTR
szUserSid
,
MSIINSTALLCONTEXT
dwContext
,
DWORD
dwOptions
,
LPCSTR
szSource
)
{
FIXME
(
"(%s %s %x %x %s)
\n
"
,
debugstr_a
(
szProductCodeOrPatchCode
),
debugstr_a
(
szUserSid
),
dwContext
,
dwOptions
,
debugstr_a
(
szSource
));
return
ERROR_SUCCESS
;
}
/******************************************************************
* MsiSourceListClearSourceW (MSI.@)
*/
UINT
WINAPI
MsiSourceListClearSourceW
(
LPCWSTR
szProductCodeOrPatchCode
,
LPCWSTR
szUserSid
,
MSIINSTALLCONTEXT
dwContext
,
DWORD
dwOptions
,
LPCWSTR
szSource
)
{
FIXME
(
"(%s %s %x %x %s)
\n
"
,
debugstr_w
(
szProductCodeOrPatchCode
),
debugstr_w
(
szUserSid
),
dwContext
,
dwOptions
,
debugstr_w
(
szSource
));
return
ERROR_SUCCESS
;
}
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