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
45de896a
Commit
45de896a
authored
Jun 19, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Jun 19, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Factor out the publishing of installation properties.
parent
b635e317
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
15 deletions
+15
-15
action.c
dlls/msi/action.c
+0
-0
install.c
dlls/msi/tests/install.c
+15
-15
No files found.
dlls/msi/action.c
View file @
45de896a
This diff is collapsed.
Click to expand it.
dlls/msi/tests/install.c
View file @
45de896a
...
...
@@ -2303,26 +2303,26 @@ static void test_publish_registerproduct(void)
CHECK_DEL_REG_STR
(
props
,
"DisplayVersion"
,
"1.1.1"
);
CHECK_DEL_REG_STR
(
props
,
"InstallDate"
,
date
);
CHECK_DEL_REG_STR
(
props
,
"InstallSource"
,
temp
);
CHECK_DEL_REG_ISTR
(
props
,
"ModifyPath"
,
"MsiExec.exe /I{7DF88A48-996F-4EC8-A022-BF956F9B2CBB}"
);
CHECK_DEL_REG_STR
(
props
,
"Publisher"
,
"Wine"
);
CHECK_DEL_REG_STR
(
props
,
"UninstallString"
,
"MsiExec.exe /I{7DF88A48-996F-4EC8-A022-BF956F9B2CBB}"
);
CHECK_DEL_REG_STR
(
props
,
"AuthorizedCDFPrefix"
,
NULL
);
CHECK_DEL_REG_STR
(
props
,
"Comments"
,
NULL
);
CHECK_DEL_REG_STR
(
props
,
"Contact"
,
NULL
);
CHECK_DEL_REG_STR
(
props
,
"HelpLink"
,
NULL
);
CHECK_DEL_REG_STR
(
props
,
"HelpTelephone"
,
NULL
);
CHECK_DEL_REG_STR
(
props
,
"InstallLocation"
,
NULL
);
CHECK_DEL_REG_STR
(
props
,
"Readme"
,
NULL
);
CHECK_DEL_REG_STR
(
props
,
"Size"
,
NULL
);
CHECK_DEL_REG_STR
(
props
,
"URLInfoAbout"
,
NULL
);
CHECK_DEL_REG_STR
(
props
,
"URLUpdateInfo"
,
NULL
);
CHECK_DEL_REG_DWORD
(
props
,
"Language"
,
1033
);
CHECK_DEL_REG_DWORD
(
props
,
"Version"
,
0x1010001
);
CHECK_DEL_REG_DWORD
(
props
,
"VersionMajor"
,
1
);
CHECK_DEL_REG_DWORD
(
props
,
"VersionMinor"
,
1
);
CHECK_DEL_REG_DWORD
(
props
,
"WindowsInstaller"
,
1
);
CHECK_DEL_REG_STR
(
props
,
"Publisher"
,
"Wine"
);
CHECK_DEL_REG_DWORD
(
props
,
"Version"
,
0x1010001
);
todo_wine
{
CHECK_DEL_REG_ISTR
(
props
,
"ModifyPath"
,
"MsiExec.exe /I{7DF88A48-996F-4EC8-A022-BF956F9B2CBB}"
);
CHECK_DEL_REG_STR
(
props
,
"UninstallString"
,
"MsiExec.exe /I{7DF88A48-996F-4EC8-A022-BF956F9B2CBB}"
);
CHECK_DEL_REG_STR
(
props
,
"AuthorizedCDFPrefix"
,
NULL
);
CHECK_DEL_REG_STR
(
props
,
"Comments"
,
NULL
);
CHECK_DEL_REG_STR
(
props
,
"Contact"
,
NULL
);
CHECK_DEL_REG_STR
(
props
,
"HelpLink"
,
NULL
);
CHECK_DEL_REG_STR
(
props
,
"HelpTelephone"
,
NULL
);
CHECK_DEL_REG_STR
(
props
,
"InstallLocation"
,
NULL
);
CHECK_DEL_REG_STR
(
props
,
"Readme"
,
NULL
);
CHECK_DEL_REG_STR
(
props
,
"Size"
,
NULL
);
CHECK_DEL_REG_STR
(
props
,
"URLInfoAbout"
,
NULL
);
CHECK_DEL_REG_STR
(
props
,
"URLUpdateInfo"
,
NULL
);
CHECK_DEL_REG_DWORD
(
props
,
"Language"
,
1033
);
CHECK_DEL_REG_DWORD
(
props
,
"EstimatedSize"
,
12
);
}
...
...
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