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
06c477fe
Commit
06c477fe
authored
Oct 30, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Oct 30, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a stub implementation of msi.MsiSetMode.
parent
f8853e4a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
1 deletion
+20
-1
install.c
dlls/msi/install.c
+18
-0
msi.spec
dlls/msi/msi.spec
+1
-1
msiquery.h
include/msiquery.h
+1
-0
No files found.
dlls/msi/install.c
View file @
06c477fe
...
...
@@ -460,6 +460,24 @@ BOOL WINAPI MsiGetMode(MSIHANDLE hInstall, MSIRUNMODE iRunMode)
}
/***********************************************************************
* MsiSetMode (MSI.@)
*/
BOOL
WINAPI
MsiSetMode
(
MSIHANDLE
hInstall
,
MSIRUNMODE
iRunMode
,
BOOL
fState
)
{
switch
(
iRunMode
)
{
case
MSIRUNMODE_RESERVED11
:
case
MSIRUNMODE_WINDOWS9X
:
case
MSIRUNMODE_RESERVED14
:
case
MSIRUNMODE_RESERVED15
:
return
FALSE
;
default:
FIXME
(
"%ld %d %d
\n
"
,
hInstall
,
iRunMode
,
fState
);
}
return
TRUE
;
}
/***********************************************************************
* MsiSetFeatureStateA (MSI.@)
*
* According to the docs, when this is called it immediately recalculates
...
...
dlls/msi/msi.spec
View file @
06c477fe
...
...
@@ -136,7 +136,7 @@
140 stub MsiSetInstallLevel
141 stdcall MsiSetInternalUI(long ptr)
142 stub MsiVerifyDiskSpace
143 st
ub MsiSetMode
143 st
dcall MsiSetMode(long long long)
144 stdcall MsiSetPropertyA(long str str)
145 stdcall MsiSetPropertyW(long wstr wstr)
146 stdcall MsiSetTargetPathA(long str str)
...
...
include/msiquery.h
View file @
06c477fe
...
...
@@ -261,6 +261,7 @@ UINT WINAPI MsiSummaryInfoGetPropertyCount(MSIHANDLE,UINT*);
UINT
WINAPI
MsiEnableUIPreview
(
MSIHANDLE
,
MSIHANDLE
*
);
BOOL
WINAPI
MsiGetMode
(
MSIHANDLE
,
MSIRUNMODE
);
BOOL
WINAPI
MsiSetMode
(
MSIHANDLE
,
MSIRUNMODE
,
BOOL
);
UINT
WINAPI
MsiViewModify
(
MSIHANDLE
,
MSIMODIFY
,
MSIHANDLE
);
...
...
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