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
a0f88f7a
Commit
a0f88f7a
authored
Jan 03, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Jan 03, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MSI: Improve the MsiGetMode stub a little.
parent
188365e2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
2 deletions
+25
-2
install.c
dlls/msi/install.c
+25
-2
No files found.
dlls/msi/install.c
View file @
a0f88f7a
...
@@ -449,8 +449,31 @@ UINT WINAPI MsiSetTargetPathW(MSIHANDLE hInstall, LPCWSTR szFolder,
...
@@ -449,8 +449,31 @@ UINT WINAPI MsiSetTargetPathW(MSIHANDLE hInstall, LPCWSTR szFolder,
BOOL
WINAPI
MsiGetMode
(
MSIHANDLE
hInstall
,
MSIRUNMODE
iRunMode
)
BOOL
WINAPI
MsiGetMode
(
MSIHANDLE
hInstall
,
MSIRUNMODE
iRunMode
)
{
{
FIXME
(
"STUB (iRunMode=%i)
\n
"
,
iRunMode
);
BOOL
r
=
FALSE
;
return
TRUE
;
switch
(
iRunMode
)
{
case
MSIRUNMODE_WINDOWS9X
:
if
(
GetVersion
()
&
0x80000000
)
r
=
TRUE
;
break
;
case
MSIRUNMODE_RESERVED11
:
case
MSIRUNMODE_RESERVED14
:
case
MSIRUNMODE_RESERVED15
:
break
;
case
MSIRUNMODE_SCHEDULED
:
case
MSIRUNMODE_ROLLBACK
:
case
MSIRUNMODE_COMMIT
:
break
;
default:
FIXME
(
"%ld %d
\n
"
,
hInstall
,
iRunMode
);
r
=
TRUE
;
}
return
r
;
}
}
/***********************************************************************
/***********************************************************************
...
...
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