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
44e1c7d7
Commit
44e1c7d7
authored
Nov 05, 2007
by
James Hawkins
Committed by
Alexandre Julliard
Nov 05, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Implement MsiSourceListAddSourceExA.
parent
405d0be4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
1 deletion
+24
-1
msi.spec
dlls/msi/msi.spec
+1
-1
source.c
dlls/msi/source.c
+23
-0
No files found.
dlls/msi/msi.spec
View file @
44e1c7d7
...
...
@@ -248,7 +248,7 @@
252 stub MsiQueryFeatureStateExW
253 stub MsiDeterminePatchSequenceA
254 stub MsiDeterminePatchSequenceW
255 st
ub MsiSourceListAddSourceExA
255 st
dcall MsiSourceListAddSourceExA(str str long long str long)
256 stdcall MsiSourceListAddSourceExW(wstr wstr long long wstr long)
257 stub MsiSourceListClearSourceA
258 stub MsiSourceListClearSourceW
...
...
dlls/msi/source.c
View file @
44e1c7d7
...
...
@@ -556,6 +556,29 @@ UINT WINAPI MsiSourceListAddSourceA( LPCSTR szProduct, LPCSTR szUserName,
}
/******************************************************************
* MsiSourceListAddSourceExA (MSI.@)
*/
UINT
WINAPI
MsiSourceListAddSourceExA
(
LPCSTR
szProduct
,
LPCSTR
szUserSid
,
MSIINSTALLCONTEXT
dwContext
,
DWORD
dwOptions
,
LPCSTR
szSource
,
DWORD
dwIndex
)
{
UINT
ret
;
LPWSTR
product
,
usersid
,
source
;
product
=
strdupAtoW
(
szProduct
);
usersid
=
strdupAtoW
(
szUserSid
);
source
=
strdupAtoW
(
szSource
);
ret
=
MsiSourceListAddSourceExW
(
product
,
usersid
,
dwContext
,
dwOptions
,
source
,
dwIndex
);
msi_free
(
product
);
msi_free
(
usersid
);
msi_free
(
source
);
return
ret
;
}
/******************************************************************
* MsiSourceListAddSourceExW (MSI.@)
*/
UINT
WINAPI
MsiSourceListAddSourceExW
(
LPCWSTR
szProduct
,
LPCWSTR
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