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
71c27c99
Commit
71c27c99
authored
Feb 04, 2009
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Feb 05, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
localspl: Enable environment "Windows x64" for Win64.
parent
c0e11f66
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
localspl_main.c
dlls/localspl/localspl_main.c
+6
-1
No files found.
dlls/localspl/localspl_main.c
View file @
71c27c99
...
...
@@ -129,6 +129,8 @@ static const WCHAR win40_subdirW[] = {'w','i','n','4','0',0};
static
const
WCHAR
version0_regpathW
[]
=
{
'\\'
,
'V'
,
'e'
,
'r'
,
's'
,
'i'
,
'o'
,
'n'
,
'-'
,
'0'
,
0
};
static
const
WCHAR
version0_subdirW
[]
=
{
'\\'
,
'0'
,
0
};
static
const
WCHAR
x64_envnameW
[]
=
{
'W'
,
'i'
,
'n'
,
'd'
,
'o'
,
'w'
,
's'
,
' '
,
'x'
,
'6'
,
'4'
,
0
};
static
const
WCHAR
x64_subdirW
[]
=
{
'x'
,
'6'
,
'4'
,
0
};
static
const
WCHAR
x86_envnameW
[]
=
{
'W'
,
'i'
,
'n'
,
'd'
,
'o'
,
'w'
,
's'
,
' '
,
'N'
,
'T'
,
' '
,
'x'
,
'8'
,
'6'
,
0
};
static
const
WCHAR
x86_subdirW
[]
=
{
'w'
,
'3'
,
'2'
,
'x'
,
'8'
,
'6'
,
0
};
static
const
WCHAR
version3_regpathW
[]
=
{
'\\'
,
'V'
,
'e'
,
'r'
,
's'
,
'i'
,
'o'
,
'n'
,
'-'
,
'3'
,
0
};
...
...
@@ -138,10 +140,13 @@ static const WCHAR version3_subdirW[] = {'\\','3',0};
static
const
printenv_t
env_x86
=
{
x86_envnameW
,
x86_subdirW
,
3
,
version3_regpathW
,
version3_subdirW
};
static
const
printenv_t
env_x64
=
{
x64_envnameW
,
x64_subdirW
,
3
,
version3_regpathW
,
version3_subdirW
};
static
const
printenv_t
env_win40
=
{
win40_envnameW
,
win40_subdirW
,
0
,
version0_regpathW
,
version0_subdirW
};
static
const
printenv_t
*
const
all_printenv
[]
=
{
&
env_x86
,
&
env_win40
};
static
const
printenv_t
*
const
all_printenv
[]
=
{
&
env_x86
,
&
env_
x64
,
&
env_
win40
};
static
const
DWORD
di_sizeof
[]
=
{
0
,
sizeof
(
DRIVER_INFO_1W
),
sizeof
(
DRIVER_INFO_2W
),
...
...
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