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
55b47054
Commit
55b47054
authored
Feb 19, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Feb 20, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Forward MsiSourceListEnumSourcesA to a stub implementation of MsiSourceListEnumSourcesW.
parent
de66aebe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
57 additions
and
3 deletions
+57
-3
msi.spec
dlls/msi/msi.spec
+1
-1
source.c
dlls/msi/source.c
+56
-2
No files found.
dlls/msi/msi.spec
View file @
55b47054
...
...
@@ -257,7 +257,7 @@
261 stub MsiSourceListForceResolutionExA
262 stub MsiSourceListForceResolutionExW
263 stdcall MsiSourceListEnumSourcesA(str str long long long ptr ptr)
264 st
ub MsiSourceListEnumSourcesW
264 st
dcall MsiSourceListEnumSourcesW(wstr wstr long long long ptr ptr)
265 stdcall MsiSourceListGetInfoA(str str long long str ptr ptr)
266 stdcall MsiSourceListGetInfoW(wstr wstr long long wstr ptr ptr)
267 stdcall MsiSourceListSetInfoA(str str long long str str)
...
...
dlls/msi/source.c
View file @
55b47054
...
...
@@ -148,8 +148,62 @@ UINT WINAPI MsiSourceListEnumSourcesA(LPCSTR szProductCodeOrPatch, LPCSTR szUser
DWORD
dwOptions
,
DWORD
dwIndex
,
LPSTR
szSource
,
LPDWORD
pcchSource
)
{
FIXME
(
"(%s, %s, %d, %d, %d, %p, %p): stub!
\n
"
,
szProductCodeOrPatch
,
szUserSid
,
dwContext
,
dwOptions
,
dwIndex
,
szSource
,
pcchSource
);
LPWSTR
product
=
NULL
;
LPWSTR
usersid
=
NULL
;
LPWSTR
source
=
NULL
;
DWORD
len
=
0
;
UINT
r
;
TRACE
(
"(%s, %s, %d, %d, %d, %p, %p)
\n
"
,
debugstr_a
(
szProductCodeOrPatch
),
debugstr_a
(
szUserSid
),
dwContext
,
dwOptions
,
dwIndex
,
szSource
,
pcchSource
);
if
(
szSource
&&
!
pcchSource
)
return
ERROR_INVALID_PARAMETER
;
if
(
szProductCodeOrPatch
)
product
=
strdupAtoW
(
szProductCodeOrPatch
);
if
(
szUserSid
)
usersid
=
strdupAtoW
(
szUserSid
);
r
=
MsiSourceListEnumSourcesW
(
product
,
usersid
,
dwContext
,
dwOptions
,
dwIndex
,
NULL
,
&
len
);
if
(
r
!=
ERROR_SUCCESS
)
goto
done
;
source
=
msi_alloc
(
++
len
*
sizeof
(
WCHAR
));
if
(
!
source
)
return
ERROR_OUTOFMEMORY
;
*
source
=
'\0'
;
r
=
MsiSourceListEnumSourcesW
(
product
,
usersid
,
dwContext
,
dwOptions
,
dwIndex
,
source
,
&
len
);
if
(
r
!=
ERROR_SUCCESS
)
goto
done
;
len
=
WideCharToMultiByte
(
CP_ACP
,
0
,
source
,
-
1
,
NULL
,
0
,
NULL
,
NULL
);
if
(
*
pcchSource
>=
len
)
WideCharToMultiByte
(
CP_ACP
,
0
,
source
,
-
1
,
szSource
,
len
,
NULL
,
NULL
);
else
if
(
szSource
)
r
=
ERROR_MORE_DATA
;
*
pcchSource
=
len
-
1
;
done:
msi_free
(
product
);
msi_free
(
usersid
);
msi_free
(
source
);
return
r
;
}
/******************************************************************
* MsiSourceListEnumSourcesA (MSI.@)
*/
UINT
WINAPI
MsiSourceListEnumSourcesW
(
LPCWSTR
szProductCodeOrPatch
,
LPCWSTR
szUserSid
,
MSIINSTALLCONTEXT
dwContext
,
DWORD
dwOptions
,
DWORD
dwIndex
,
LPWSTR
szSource
,
LPDWORD
pcchSource
)
{
FIXME
(
"(%s, %s, %d, %d, %d, %p, %p): stub!
\n
"
,
debugstr_w
(
szProductCodeOrPatch
),
debugstr_w
(
szUserSid
),
dwContext
,
dwOptions
,
dwIndex
,
szSource
,
pcchSource
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
...
...
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