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
41713470
Commit
41713470
authored
Oct 06, 2008
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 07, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Added MsiInstallMissingComponentW stub implementation.
parent
cf829959
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
msi.c
dlls/msi/msi.c
+9
-0
msi.spec
dlls/msi/msi.spec
+1
-1
msi.h
include/msi.h
+4
-0
No files found.
dlls/msi/msi.c
View file @
41713470
...
...
@@ -3033,3 +3033,12 @@ UINT WINAPI MsiSetExternalUIRecord( INSTALLUI_HANDLER_RECORD puiHandler,
ppuiPrevHandler
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
/***********************************************************************
* MsiInstallMissingComponentW [MSI.@]
*/
UINT
WINAPI
MsiInstallMissingComponentW
(
LPCWSTR
szProduct
,
LPCWSTR
szComponent
,
INSTALLSTATE
eInstallState
)
{
FIXME
(
"(%s %s %d
\n
"
,
debugstr_w
(
szProduct
),
debugstr_w
(
szComponent
),
eInstallState
);
return
ERROR_SUCCESS
;
}
dlls/msi/msi.spec
View file @
41713470
...
...
@@ -77,7 +77,7 @@
81 stdcall MsiGetUserInfoA(str ptr ptr ptr ptr ptr ptr)
82 stdcall MsiGetUserInfoW(wstr ptr ptr ptr ptr ptr ptr)
83 stub MsiInstallMissingComponentA
84 st
ub MsiInstallMissingComponentW
84 st
dcall MsiInstallMissingComponentW(wstr wstr long)
85 stub MsiInstallMissingFileA
86 stub MsiInstallMissingFileW
87 stdcall MsiInstallProductA(str str)
...
...
include/msi.h
View file @
41713470
...
...
@@ -603,6 +603,10 @@ UINT WINAPI MsiDatabaseMergeA(MSIHANDLE, MSIHANDLE, LPCSTR);
UINT
WINAPI
MsiDatabaseMergeW
(
MSIHANDLE
,
MSIHANDLE
,
LPCWSTR
);
#define MsiDatabaseMerge WINELIB_NAME_AW(MsiDatabaseMerge)
UINT
WINAPI
MsiInstallMissingComponentA
(
LPCSTR
,
LPCSTR
,
INSTALLSTATE
);
UINT
WINAPI
MsiInstallMissingComponentW
(
LPCWSTR
,
LPCWSTR
,
INSTALLSTATE
);
#define MsiInstallMissingComponent WINELIB_NAME_AW(MsiInstallMissingComponent)
/* Non Unicode */
UINT
WINAPI
MsiCloseHandle
(
MSIHANDLE
);
UINT
WINAPI
MsiCloseAllHandles
(
void
);
...
...
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