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
1104dc08
Commit
1104dc08
authored
May 01, 2007
by
James Hawkins
Committed by
Alexandre Julliard
May 01, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Run the costing actions for both the UI and execute sequences.
parent
baad8887
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
9 deletions
+2
-9
action.c
dlls/msi/action.c
+0
-3
install.c
dlls/msi/tests/install.c
+2
-6
No files found.
dlls/msi/action.c
View file @
1104dc08
...
...
@@ -1568,9 +1568,6 @@ static UINT ACTION_CostInitialize(MSIPACKAGE *package)
{
'C'
,
'o'
,
's'
,
't'
,
'i'
,
'n'
,
'g'
,
'C'
,
'o'
,
'm'
,
'p'
,
'l'
,
'e'
,
't'
,
'e'
,
0
};
static
const
WCHAR
szZero
[]
=
{
'0'
,
0
};
if
(
1
==
msi_get_property_int
(
package
,
szCosting
,
0
)
)
return
ERROR_SUCCESS
;
MSI_SetPropertyW
(
package
,
szCosting
,
szZero
);
MSI_SetPropertyW
(
package
,
cszRootDrive
,
c_colon
);
...
...
dlls/msi/tests/install.c
View file @
1104dc08
...
...
@@ -1479,12 +1479,8 @@ static void test_setpropertyfolder(void)
r
=
MsiInstallProductA
(
msifile
,
NULL
);
ok
(
r
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %u
\n
"
,
r
);
delete_pf
(
"msitest
\\
maximus"
,
TRUE
);
/* FIXME: remove when the tests pass */
todo_wine
{
ok
(
delete_pf
(
"msitest
\\
added
\\
maximus"
,
TRUE
),
"File not installed
\n
"
);
ok
(
delete_pf
(
"msitest
\\
added"
,
FALSE
),
"File not installed
\n
"
);
}
ok
(
delete_pf
(
"msitest
\\
added
\\
maximus"
,
TRUE
),
"File not installed
\n
"
);
ok
(
delete_pf
(
"msitest
\\
added"
,
FALSE
),
"File not installed
\n
"
);
ok
(
delete_pf
(
"msitest"
,
FALSE
),
"File not installed
\n
"
);
DeleteFile
(
msifile
);
...
...
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