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
c8445821
Commit
c8445821
authored
Mar 24, 2009
by
Hans Leidekker
Committed by
Alexandre Julliard
Mar 24, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add stub implementations of MsiSourceListClearAllExA/W.
parent
7590a3f3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
2 deletions
+24
-2
msi.spec
dlls/msi/msi.spec
+2
-2
source.c
dlls/msi/source.c
+22
-0
No files found.
dlls/msi/msi.spec
View file @
c8445821
...
...
@@ -252,8 +252,8 @@
256 stdcall MsiSourceListAddSourceExW(wstr wstr long long wstr long)
257 stdcall MsiSourceListClearSourceA(str str long long str)
258 stdcall MsiSourceListClearSourceW(wstr wstr long long wstr)
259 st
ub MsiSourceListClearAllExA
260 st
ub MsiSourceListClearAllExW
259 st
dcall MsiSourceListClearAllExA(str str long long)
260 st
dcall MsiSourceListClearAllExW(wstr wstr long long)
261 stub MsiSourceListForceResolutionExA
262 stub MsiSourceListForceResolutionExW
263 stdcall MsiSourceListEnumSourcesA(str str long long long ptr ptr)
...
...
dlls/msi/source.c
View file @
c8445821
...
...
@@ -1320,6 +1320,28 @@ UINT WINAPI MsiSourceListClearAllW( LPCWSTR szProduct, LPCWSTR szUserName, DWORD
}
/******************************************************************
* MsiSourceListClearAllExA (MSI.@)
*/
UINT
WINAPI
MsiSourceListClearAllExA
(
LPCSTR
szProduct
,
LPCSTR
szUserSid
,
MSIINSTALLCONTEXT
dwContext
,
DWORD
dwOptions
)
{
FIXME
(
"(%s %s %d %08x)
\n
"
,
debugstr_a
(
szProduct
),
debugstr_a
(
szUserSid
),
dwContext
,
dwOptions
);
return
ERROR_SUCCESS
;
}
/******************************************************************
* MsiSourceListClearAllExW (MSI.@)
*/
UINT
WINAPI
MsiSourceListClearAllExW
(
LPCWSTR
szProduct
,
LPCWSTR
szUserSid
,
MSIINSTALLCONTEXT
dwContext
,
DWORD
dwOptions
)
{
FIXME
(
"(%s %s %d %08x)
\n
"
,
debugstr_w
(
szProduct
),
debugstr_w
(
szUserSid
),
dwContext
,
dwOptions
);
return
ERROR_SUCCESS
;
}
/******************************************************************
* MsiSourceListClearSourceA (MSI.@)
*/
UINT
WINAPI
MsiSourceListClearSourceA
(
LPCSTR
szProductCodeOrPatchCode
,
LPCSTR
szUserSid
,
...
...
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