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
c50fe560
Commit
c50fe560
authored
Aug 09, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Aug 10, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineps.drv: Write-strings warnings fix.
parent
7aeefa30
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
init.c
dlls/wineps.drv/init.c
+6
-3
No files found.
dlls/wineps.drv/init.c
View file @
c50fe560
...
...
@@ -531,6 +531,7 @@ PRINTERINFO *PSDRV_FindPrinterInfo(LPCSTR name)
char
*
ppdFileName
=
NULL
;
HKEY
hkey
;
BOOL
using_default_devmode
=
FALSE
;
static
CHAR
paper_size
[]
=
"Paper Size"
;
TRACE
(
"'%s'
\n
"
,
name
);
...
...
@@ -598,10 +599,12 @@ PRINTERINFO *PSDRV_FindPrinterInfo(LPCSTR name)
}
#endif
if
(
!
ppdFileName
)
{
res
=
GetPrinterDataA
(
hPrinter
,
"PPD File"
,
NULL
,
NULL
,
0
,
&
needed
);
static
CHAR
ppd_file
[]
=
"PPD File"
;
res
=
GetPrinterDataA
(
hPrinter
,
ppd_file
,
NULL
,
NULL
,
0
,
&
needed
);
if
((
res
==
ERROR_SUCCESS
)
||
(
res
==
ERROR_MORE_DATA
))
{
ppdFileName
=
HeapAlloc
(
PSDRV_Heap
,
0
,
needed
);
res
=
GetPrinterDataA
(
hPrinter
,
"PPD File"
,
&
ppdType
,
(
LPBYTE
)
ppdFileName
,
needed
,
&
needed
);
res
=
GetPrinterDataA
(
hPrinter
,
ppd_file
,
&
ppdType
,
(
LPBYTE
)
ppdFileName
,
needed
,
&
needed
);
}
}
/* Look for a ppd file for this printer in the config file.
...
...
@@ -695,7 +698,7 @@ PRINTERINFO *PSDRV_FindPrinterInfo(LPCSTR name)
* the Devmode structure, but Wine doesn't currently provide a convenient
* way to configure printers.
*/
res
=
GetPrinterDataA
(
hPrinter
,
"Paper Size"
,
NULL
,
(
LPBYTE
)
&
dwPaperSize
,
res
=
GetPrinterDataA
(
hPrinter
,
paper_size
,
NULL
,
(
LPBYTE
)
&
dwPaperSize
,
sizeof
(
DWORD
),
&
needed
);
if
(
res
==
ERROR_SUCCESS
)
pi
->
Devmode
->
dmPublic
.
u1
.
s1
.
dmPaperSize
=
(
SHORT
)
dwPaperSize
;
...
...
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