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
c77d200f
Commit
c77d200f
authored
Dec 02, 2007
by
James Hawkins
Committed by
Alexandre Julliard
Dec 03, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add a stub implementation of MsiEnumComponentCostsW.
parent
b57a2f93
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
msi.c
dlls/msi/msi.c
+12
-0
msi.spec
dlls/msi/msi.spec
+1
-1
No files found.
dlls/msi/msi.c
View file @
c77d200f
...
...
@@ -732,6 +732,18 @@ UINT WINAPI MsiEnableLogW(DWORD dwLogMode, LPCWSTR szLogFile, DWORD attributes)
return
ERROR_SUCCESS
;
}
UINT
WINAPI
MsiEnumComponentCostsW
(
MSIHANDLE
hInstall
,
LPCWSTR
szComponent
,
DWORD
dwIndex
,
INSTALLSTATE
iState
,
LPWSTR
lpDriveBuf
,
DWORD
*
pcchDriveBuf
,
int
*
piCost
,
int
*
pTempCost
)
{
FIXME
(
"(%ld, %s, %d, %d, %p, %p, %p %p): stub!
\n
"
,
hInstall
,
debugstr_w
(
szComponent
),
dwIndex
,
iState
,
lpDriveBuf
,
pcchDriveBuf
,
piCost
,
pTempCost
);
return
ERROR_NO_MORE_ITEMS
;
}
UINT
WINAPI
MsiQueryComponentStateA
(
LPCSTR
szProductCode
,
LPCSTR
szUserSid
,
MSIINSTALLCONTEXT
dwContext
,
LPCSTR
szComponent
,
INSTALLSTATE
*
pdwState
)
...
...
dlls/msi/msi.spec
View file @
c77d200f
...
...
@@ -214,7 +214,7 @@
218 stdcall MsiGetFileHashA(str long ptr)
219 stdcall MsiGetFileHashW(wstr long ptr)
220 stub MsiEnumComponentCostsA
221 st
ub MsiEnumComponentCostsW
221 st
dcall MsiEnumComponentCostsW(long str long long ptr ptr ptr ptr)
222 stdcall MsiCreateAndVerifyInstallerDirectory(long)
223 stdcall MsiGetFileSignatureInformationA(str long ptr ptr ptr)
224 stdcall MsiGetFileSignatureInformationW(wstr long ptr ptr ptr)
...
...
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