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
fc56e926
Commit
fc56e926
authored
Jul 18, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Jul 19, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add a stub implementation of MsiSourceListClearAll.
parent
2396e2a5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
2 deletions
+20
-2
msi.spec
dlls/msi/msi.spec
+2
-2
source.c
dlls/msi/source.c
+18
-0
No files found.
dlls/msi/msi.spec
View file @
fc56e926
...
...
@@ -201,8 +201,8 @@
205 stdcall MsiEnumRelatedProductsW(wstr long long ptr)
206 stub MsiSetFeatureAttributesA
207 stub MsiSetFeatureAttributesW
208 st
ub MsiSourceListClearAllA
209 st
ub MsiSourceListClearAllW
208 st
dcall MsiSourceListClearAllA(str str long)
209 st
dcall MsiSourceListClearAllW(wstr wstr long)
210 stdcall MsiSourceListAddSourceA(str str long str)
211 stdcall MsiSourceListAddSourceW(wstr wstr long wstr)
212 stub MsiSourceListForceResolutionA
...
...
dlls/msi/source.c
View file @
fc56e926
...
...
@@ -617,3 +617,21 @@ UINT WINAPI MsiSourceListAddMediaDiskW(LPCWSTR szProduct, LPCWSTR szUserSid,
return
ERROR_SUCCESS
;
}
/******************************************************************
* MsiSourceListAddSourceExA (MSI.@)
*/
UINT
WINAPI
MsiSourceListClearAllA
(
LPCSTR
szProduct
,
LPCSTR
szUserName
,
DWORD
dwReserved
)
{
FIXME
(
"(%s %s %ld) stub
\n
"
,
debugstr_a
(
szProduct
),
debugstr_a
(
szUserName
),
dwReserved
);
return
ERROR_SUCCESS
;
}
/******************************************************************
* MsiSourceListAddSourceExW (MSI.@)
*/
UINT
WINAPI
MsiSourceListClearAllW
(
LPCWSTR
szProduct
,
LPCWSTR
szUserName
,
DWORD
dwReserved
)
{
FIXME
(
"(%s %s %ld) stub
\n
"
,
debugstr_w
(
szProduct
),
debugstr_w
(
szUserName
),
dwReserved
);
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