Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
dfc9351b
Commit
dfc9351b
authored
Oct 01, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
Oct 01, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Set more 64-bit properties.
parent
ddbf3c75
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
41 additions
and
12 deletions
+41
-12
package.c
dlls/msi/package.c
+39
-11
install.c
dlls/msi/tests/install.c
+2
-1
package.c
dlls/msi/tests/package.c
+0
-0
No files found.
dlls/msi/package.c
View file @
dfc9351b
...
...
@@ -659,6 +659,9 @@ static VOID set_installer_properties(MSIPACKAGE *package)
static
const
WCHAR
szMsiAMD64
[]
=
{
'M'
,
's'
,
'i'
,
'A'
,
'M'
,
'D'
,
'6'
,
'4'
,
0
};
static
const
WCHAR
szMsix64
[]
=
{
'M'
,
's'
,
'i'
,
'x'
,
'6'
,
'4'
,
0
};
static
const
WCHAR
szSystem64Folder
[]
=
{
'S'
,
'y'
,
's'
,
't'
,
'e'
,
'm'
,
'6'
,
'4'
,
'F'
,
'o'
,
'l'
,
'd'
,
'e'
,
'r'
,
0
};
static
const
WCHAR
szCommonFiles64Folder
[]
=
{
'C'
,
'o'
,
'm'
,
'm'
,
'o'
,
'n'
,
'F'
,
'i'
,
'l'
,
'e'
,
's'
,
'6'
,
'4'
,
'F'
,
'o'
,
'l'
,
'd'
,
'e'
,
'r'
,
0
};
static
const
WCHAR
szProgramFiles64Folder
[]
=
{
'P'
,
'r'
,
'o'
,
'g'
,
'r'
,
'a'
,
'm'
,
'F'
,
'i'
,
'l'
,
'e'
,
's'
,
'6'
,
'4'
,
'F'
,
'o'
,
'l'
,
'd'
,
'e'
,
'r'
,
0
};
static
const
WCHAR
szVersionNT64
[]
=
{
'V'
,
'e'
,
'r'
,
's'
,
'i'
,
'o'
,
'n'
,
'N'
,
'T'
,
'6'
,
'4'
,
0
};
static
const
WCHAR
szUserInfo
[]
=
{
'S'
,
'O'
,
'F'
,
'T'
,
'W'
,
'A'
,
'R'
,
'E'
,
'\\'
,
'M'
,
'i'
,
'c'
,
'r'
,
'o'
,
's'
,
'o'
,
'f'
,
't'
,
'\\'
,
...
...
@@ -698,14 +701,6 @@ static VOID set_installer_properties(MSIPACKAGE *package)
* RedirectedDllSupport
*/
SHGetFolderPathW
(
NULL
,
CSIDL_PROGRAM_FILES_COMMON
,
NULL
,
0
,
pth
);
strcatW
(
pth
,
szBackSlash
);
msi_set_property
(
package
->
db
,
szCommonFilesFolder
,
pth
);
SHGetFolderPathW
(
NULL
,
CSIDL_PROGRAM_FILES
,
NULL
,
0
,
pth
);
strcatW
(
pth
,
szBackSlash
);
msi_set_property
(
package
->
db
,
szProgramFilesFolder
,
pth
);
SHGetFolderPathW
(
NULL
,
CSIDL_COMMON_APPDATA
,
NULL
,
0
,
pth
);
strcatW
(
pth
,
szBackSlash
);
msi_set_property
(
package
->
db
,
szCommonAppDataFolder
,
pth
);
...
...
@@ -828,20 +823,53 @@ static VOID set_installer_properties(MSIPACKAGE *package)
sprintfW
(
bufstr
,
szFormat
,
MSI_MAJORVERSION
*
100
);
msi_set_property
(
package
->
db
,
szVersionDatabase
,
bufstr
);
GetSystemInfo
(
&
sys_info
);
GetNativeSystemInfo
(
&
sys_info
);
sprintfW
(
bufstr
,
szIntFormat
,
sys_info
.
wProcessorLevel
);
if
(
sys_info
.
u
.
s
.
wProcessorArchitecture
==
PROCESSOR_ARCHITECTURE_INTEL
)
{
sprintfW
(
bufstr
,
szIntFormat
,
sys_info
.
wProcessorLevel
);
msi_set_property
(
package
->
db
,
szIntel
,
bufstr
);
GetSystemDirectoryW
(
pth
,
MAX_PATH
);
PathAddBackslashW
(
pth
);
msi_set_property
(
package
->
db
,
szSystemFolder
,
pth
);
SHGetFolderPathW
(
NULL
,
CSIDL_PROGRAM_FILES
,
NULL
,
0
,
pth
);
PathAddBackslashW
(
pth
);
msi_set_property
(
package
->
db
,
szProgramFilesFolder
,
pth
);
SHGetFolderPathW
(
NULL
,
CSIDL_PROGRAM_FILES_COMMON
,
NULL
,
0
,
pth
);
PathAddBackslashW
(
pth
);
msi_set_property
(
package
->
db
,
szCommonFilesFolder
,
pth
);
}
else
if
(
sys_info
.
u
.
s
.
wProcessorArchitecture
==
PROCESSOR_ARCHITECTURE_AMD64
)
{
sprintfW
(
bufstr
,
szIntFormat
,
sys_info
.
wProcessorLevel
);
msi_set_property
(
package
->
db
,
szMsiAMD64
,
bufstr
);
msi_set_property
(
package
->
db
,
szMsix64
,
bufstr
);
msi_set_property
(
package
->
db
,
szVersionNT64
,
verstr
);
GetSystemDirectoryW
(
pth
,
MAX_PATH
);
PathAddBackslashW
(
pth
);
msi_set_property
(
package
->
db
,
szSystem64Folder
,
pth
);
GetSystemWow64DirectoryW
(
pth
,
MAX_PATH
);
PathAddBackslashW
(
pth
);
msi_set_property
(
package
->
db
,
szSystemFolder
,
pth
);
SHGetFolderPathW
(
NULL
,
CSIDL_PROGRAM_FILES
,
NULL
,
0
,
pth
);
PathAddBackslashW
(
pth
);
msi_set_property
(
package
->
db
,
szProgramFiles64Folder
,
pth
);
SHGetFolderPathW
(
NULL
,
CSIDL_PROGRAM_FILESX86
,
NULL
,
0
,
pth
);
PathAddBackslashW
(
pth
);
msi_set_property
(
package
->
db
,
szProgramFilesFolder
,
pth
);
SHGetFolderPathW
(
NULL
,
CSIDL_PROGRAM_FILES_COMMON
,
NULL
,
0
,
pth
);
PathAddBackslashW
(
pth
);
msi_set_property
(
package
->
db
,
szCommonFiles64Folder
,
pth
);
SHGetFolderPathW
(
NULL
,
CSIDL_PROGRAM_FILES_COMMONX86
,
NULL
,
0
,
pth
);
PathAddBackslashW
(
pth
);
msi_set_property
(
package
->
db
,
szCommonFilesFolder
,
pth
);
}
/* Screen properties. */
...
...
dlls/msi/tests/install.c
View file @
dfc9351b
...
...
@@ -3448,7 +3448,8 @@ static BOOL get_system_dirs(void)
}
size
=
MAX_PATH
;
if
(
RegQueryValueExA
(
hkey
,
"CommonFilesDir"
,
0
,
&
type
,
(
LPBYTE
)
COMMON_FILES_DIR
,
&
size
))
{
if
(
RegQueryValueExA
(
hkey
,
"CommonFilesDir (x86)"
,
0
,
&
type
,
(
LPBYTE
)
COMMON_FILES_DIR
,
&
size
)
&&
RegQueryValueExA
(
hkey
,
"CommonFilesDir"
,
0
,
&
type
,
(
LPBYTE
)
COMMON_FILES_DIR
,
&
size
))
{
RegCloseKey
(
hkey
);
return
FALSE
;
}
...
...
dlls/msi/tests/package.c
View file @
dfc9351b
This diff is collapsed.
Click to expand it.
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