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
48843965
Commit
48843965
authored
Jul 18, 1999
by
Thuy Nguyen
Committed by
Alexandre Julliard
Jul 18, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Introduced a [psdrv] section in wine.conf with a ppdfile value
specifying the path and name of the PPD file.
parent
59fb1303
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
3 deletions
+10
-3
README
graphics/psdrv/README
+7
-2
init.c
graphics/psdrv/init.c
+2
-0
psdrv.h
include/psdrv.h
+1
-1
No files found.
graphics/psdrv/README
View file @
48843965
...
...
@@ -43,8 +43,13 @@ You also require a PPD file for your printer. This describes certain
characteristics of the printer such as which fonts are installed, how to select
manual feed etc. Adobe also has many of these on its website, have a look in
ftp://ftp.adobe.com/pub/adobe/printerdrivers/win/all/
Put the PPD in the directory from which you start wine and call it default.ppd
[this will definitely change soon].
Create a [psdrv] section in your wine.conf (or ~/.winerc) and add the
following entry:
ppdfile=/somewhere/file.ppd
By default, the driver will look for a file named default.ppd in the directory
from which you started wine.
To enable colour printing you need to have the *ColorDevice entry in the PPD
set to true, otherwise the driver will generate greyscale.
...
...
graphics/psdrv/init.c
View file @
48843965
...
...
@@ -362,6 +362,8 @@ PRINTERINFO *PSDRV_FindPrinterInfo(LPCSTR name)
(
LPBYTE
)
pi
->
Devmode
,
needed
,
&
needed
);
}
PROFILE_GetWineIniString
(
"psdrv"
,
"ppdfile"
,
"default.ppd"
,
pi
->
Devmode
->
dmDrvPrivate
.
ppdFileName
,
256
);
pi
->
ppd
=
PSDRV_ParsePPD
(
pi
->
Devmode
->
dmDrvPrivate
.
ppdFileName
);
if
(
!
pi
->
ppd
)
{
HeapFree
(
PSDRV_Heap
,
0
,
pi
->
FriendlyName
);
...
...
include/psdrv.h
View file @
48843965
...
...
@@ -148,7 +148,7 @@ typedef struct {
int
dummy
;
}
dmDocPrivate
;
struct
_tagdrvprivate
{
char
ppdFileName
[
100
];
/* Hack */
char
ppdFileName
[
256
];
/* Hack */
UINT
numInstalledOptions
;
/* Options at end of struct */
}
dmDrvPrivate
;
...
...
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