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
c0e11f66
Commit
c0e11f66
authored
Feb 04, 2009
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Feb 05, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winspool: Enable environment "Windows x64" for Win64.
parent
1693cd1c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
info.c
dlls/winspool.drv/info.c
+5
-1
No files found.
dlls/winspool.drv/info.c
View file @
c0e11f66
...
...
@@ -195,8 +195,10 @@ static const WCHAR WinNT_CV_PrinterPortsW[] = { 'S','o','f','t','w','a','r','e',
static
const
WCHAR
DefaultEnvironmentW
[]
=
{
'W'
,
'i'
,
'n'
,
'e'
,
0
};
static
const
WCHAR
envname_win40W
[]
=
{
'W'
,
'i'
,
'n'
,
'd'
,
'o'
,
'w'
,
's'
,
' '
,
'4'
,
'.'
,
'0'
,
0
};
static
const
WCHAR
envname_x64W
[]
=
{
'W'
,
'i'
,
'n'
,
'd'
,
'o'
,
'w'
,
's'
,
' '
,
'x'
,
'6'
,
'4'
,
0
};
static
const
WCHAR
envname_x86W
[]
=
{
'W'
,
'i'
,
'n'
,
'd'
,
'o'
,
'w'
,
's'
,
' '
,
'N'
,
'T'
,
' '
,
'x'
,
'8'
,
'6'
,
0
};
static
const
WCHAR
subdir_win40W
[]
=
{
'w'
,
'i'
,
'n'
,
'4'
,
'0'
,
0
};
static
const
WCHAR
subdir_x64W
[]
=
{
'x'
,
'6'
,
'4'
,
0
};
static
const
WCHAR
subdir_x86W
[]
=
{
'w'
,
'3'
,
'2'
,
'x'
,
'8'
,
'6'
,
0
};
static
const
WCHAR
Version0_RegPathW
[]
=
{
'\\'
,
'V'
,
'e'
,
'r'
,
's'
,
'i'
,
'o'
,
'n'
,
'-'
,
'0'
,
0
};
static
const
WCHAR
Version0_SubdirW
[]
=
{
'\\'
,
'0'
,
0
};
...
...
@@ -283,12 +285,14 @@ static const DWORD pi_sizeof[] = {0, sizeof(PRINTER_INFO_1W), sizeof(PRINTER_INF
static
const
printenv_t
*
validate_envW
(
LPCWSTR
env
)
{
static
const
printenv_t
env_x64
=
{
envname_x64W
,
subdir_x64W
,
3
,
Version3_RegPathW
,
Version3_SubdirW
};
static
const
printenv_t
env_x86
=
{
envname_x86W
,
subdir_x86W
,
3
,
Version3_RegPathW
,
Version3_SubdirW
};
static
const
printenv_t
env_win40
=
{
envname_win40W
,
subdir_win40W
,
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
};
const
printenv_t
*
result
=
NULL
;
unsigned
int
i
;
...
...
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