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
6efc9f92
Commit
6efc9f92
authored
Jun 10, 2011
by
Hans Leidekker
Committed by
Alexandre Julliard
Jun 10, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add a stub implementation of MsiCreateTransformSummaryInfo.
parent
2e3cf68e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
2 deletions
+23
-2
msi.spec
dlls/msi/msi.spec
+2
-2
suminfo.c
dlls/msi/suminfo.c
+21
-0
No files found.
dlls/msi/msi.spec
View file @
6efc9f92
...
...
@@ -178,8 +178,8 @@
182 stdcall -private DllGetVersion(ptr)
183 stub MsiGetProductCodeFromPackageCodeA
184 stub MsiGetProductCodeFromPackageCodeW
185 st
ub MsiCreateTransformSummaryInfoA
186 st
ub MsiCreateTransformSummaryInfoW
185 st
dcall MsiCreateTransformSummaryInfoA(long long str long long)
186 st
dcall MsiCreateTransformSummaryInfoW(long long wstr long long)
187 stub MsiQueryFeatureStateFromDescriptorA
188 stub MsiQueryFeatureStateFromDescriptorW
189 stdcall MsiConfigureProductExA(str long long str)
...
...
dlls/msi/suminfo.c
View file @
6efc9f92
...
...
@@ -977,3 +977,24 @@ UINT WINAPI MsiSummaryInfoPersist( MSIHANDLE handle )
msiobj_release
(
&
si
->
hdr
);
return
ret
;
}
UINT
WINAPI
MsiCreateTransformSummaryInfoA
(
MSIHANDLE
db
,
MSIHANDLE
db_ref
,
LPCSTR
transform
,
int
error
,
int
validation
)
{
UINT
r
;
WCHAR
*
transformW
=
NULL
;
TRACE
(
"%u, %u, %s, %d, %d
\n
"
,
db
,
db_ref
,
debugstr_a
(
transform
),
error
,
validation
);
if
(
transform
&&
!
(
transformW
=
strdupAtoW
(
transform
)))
return
ERROR_OUTOFMEMORY
;
r
=
MsiCreateTransformSummaryInfoW
(
db
,
db_ref
,
transformW
,
error
,
validation
);
msi_free
(
transformW
);
return
r
;
}
UINT
WINAPI
MsiCreateTransformSummaryInfoW
(
MSIHANDLE
db
,
MSIHANDLE
db_ref
,
LPCWSTR
transform
,
int
error
,
int
validation
)
{
FIXME
(
"%u, %u, %s, %d, %d
\n
"
,
db
,
db_ref
,
debugstr_w
(
transform
),
error
,
validation
);
return
ERROR_FUNCTION_FAILED
;
}
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