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
4a202c21
Commit
4a202c21
authored
Sep 16, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Sep 16, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the stub for MsiConfigureFeature.
parent
438f19b9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
5 deletions
+19
-5
msi.c
dlls/msi/msi.c
+13
-3
msi.spec
dlls/msi/msi.spec
+2
-2
msi.h
include/msi.h
+4
-0
No files found.
dlls/msi/msi.c
View file @
4a202c21
...
...
@@ -1696,13 +1696,23 @@ UINT WINAPI MsiCollectUserInfoA(LPCSTR szProduct)
return
rc
;
}
UINT
WINAPI
MsiConfigureFeatureW
(
LPWSTR
szProduct
,
LPWSTR
szFeature
,
INSTALLSTATE
eInstallState
)
/***********************************************************************
* MsiConfigureFeatureA [MSI.@]
*/
UINT
WINAPI
MsiConfigureFeatureA
(
LPCSTR
szProduct
,
LPCSTR
szFeature
,
INSTALLSTATE
eInstallState
)
{
FIXME
(
"%s %s %i
\n
"
,
debugstr_
w
(
szProduct
),
debugstr_w
(
szFeature
),
eInstallState
);
FIXME
(
"%s %s %i
\n
"
,
debugstr_
a
(
szProduct
),
debugstr_a
(
szFeature
),
eInstallState
);
return
ERROR_SUCCESS
;
}
/***********************************************************************
* MsiConfigureFeatureW [MSI.@]
*/
UINT
WINAPI
MsiConfigureFeatureW
(
LPCWSTR
szProduct
,
LPCWSTR
szFeature
,
INSTALLSTATE
eInstallState
)
{
FIXME
(
"%s %s %i
\n
"
,
debugstr_w
(
szProduct
),
debugstr_w
(
szFeature
),
eInstallState
);
return
ERROR_SUCCESS
;
}
UINT
WINAPI
MsiCreateAndVerifyInstallerDirectory
(
DWORD
dwReserved
)
{
...
...
dlls/msi/msi.spec
View file @
4a202c21
...
...
@@ -4,10 +4,10 @@
8 stdcall MsiCloseHandle(long)
9 stdcall MsiCollectUserInfoA(str)
10 stdcall MsiCollectUserInfoW(wstr)
11 st
ub MsiConfigureFeatureA
11 st
dcall MsiConfigureFeatureA(str str long)
12 stub MsiConfigureFeatureFromDescriptorA
13 stub MsiConfigureFeatureFromDescriptorW
14 stdcall MsiConfigureFeatureW(
str
str ptr)
14 stdcall MsiConfigureFeatureW(
wstr w
str ptr)
15 stdcall MsiConfigureProductA(str long long)
16 stdcall MsiConfigureProductW(wstr long long)
17 stdcall MsiCreateRecord(long)
...
...
include/msi.h
View file @
4a202c21
...
...
@@ -418,6 +418,10 @@ UINT WINAPI MsiConfigureProductExA(LPCSTR, int, INSTALLSTATE, LPCSTR);
UINT
WINAPI
MsiConfigureProductExW
(
LPCWSTR
,
int
,
INSTALLSTATE
,
LPCWSTR
);
#define MsiConfigureProductEx WINELIB_NAME_AW(MsiConfigureProductEx);
UINT
WINAPI
MsiConfigureFeatureA
(
LPCSTR
,
LPCSTR
,
INSTALLSTATE
);
UINT
WINAPI
MsiConfigureFeatureW
(
LPCWSTR
,
LPCWSTR
,
INSTALLSTATE
);
#define MsiConfigureFeature WINELIB_NAME_AW(MsiConfigureFeature);
UINT
WINAPI
MsiGetProductCodeA
(
LPCSTR
,
LPSTR
);
UINT
WINAPI
MsiGetProductCodeW
(
LPCWSTR
,
LPWSTR
);
#define MsiGetProductCode WINELIB_NAME_AW(MsiGetProductCode)
...
...
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