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
cbec7136
Commit
cbec7136
authored
Aug 03, 2005
by
Steven Edwards
Committed by
Alexandre Julliard
Aug 03, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add real stub for MsiConfigureFeatureW.
parent
f193c265
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
msi.c
dlls/msi/msi.c
+8
-0
msi.spec
dlls/msi/msi.spec
+1
-1
No files found.
dlls/msi/msi.c
View file @
cbec7136
...
@@ -1691,6 +1691,14 @@ UINT WINAPI MsiCollectUserInfoA(LPCSTR szProduct)
...
@@ -1691,6 +1691,14 @@ UINT WINAPI MsiCollectUserInfoA(LPCSTR szProduct)
return
rc
;
return
rc
;
}
}
UINT
WINAPI
MsiConfigureFeatureW
(
LPWSTR
szProduct
,
LPWSTR
szFeature
,
INSTALLSTATE
eInstallState
)
{
FIXME
(
"%s %s %i
\n
"
,
debugstr_w
(
szProduct
),
debugstr_w
(
szFeature
),
eInstallState
);
return
ERROR_SUCCESS
;
}
UINT
WINAPI
MsiCreateAndVerifyInstallerDirectory
(
DWORD
dwReserved
)
UINT
WINAPI
MsiCreateAndVerifyInstallerDirectory
(
DWORD
dwReserved
)
{
{
WCHAR
path
[
MAX_PATH
];
WCHAR
path
[
MAX_PATH
];
...
...
dlls/msi/msi.spec
View file @
cbec7136
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
11 stub MsiConfigureFeatureA
11 stub MsiConfigureFeatureA
12 stub MsiConfigureFeatureFromDescriptorA
12 stub MsiConfigureFeatureFromDescriptorA
13 stub MsiConfigureFeatureFromDescriptorW
13 stub MsiConfigureFeatureFromDescriptorW
14 st
ub MsiConfigureFeatureW
14 st
dcall MsiConfigureFeatureW(str str ptr)
15 stdcall MsiConfigureProductA(str long long)
15 stdcall MsiConfigureProductA(str long long)
16 stdcall MsiConfigureProductW(wstr long long)
16 stdcall MsiConfigureProductW(wstr long long)
17 stdcall MsiCreateRecord(long)
17 stdcall MsiCreateRecord(long)
...
...
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