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
4dfef2ef
Commit
4dfef2ef
authored
Apr 11, 2012
by
Huw Davies
Committed by
Alexandre Julliard
Apr 11, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineps: Move the constraints list to a standard list.
parent
4ff9b7f1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
14 deletions
+12
-14
ppd.c
dlls/wineps.drv/ppd.c
+8
-11
psdrv.h
dlls/wineps.drv/psdrv.h
+4
-3
No files found.
dlls/wineps.drv/ppd.c
View file @
4dfef2ef
...
...
@@ -634,6 +634,7 @@ PPD *PSDRV_ParsePPD(char *fname)
list_init
(
&
ppd
->
InstalledFonts
);
list_init
(
&
ppd
->
PageSizes
);
list_init
(
&
ppd
->
Constraints
);
/*
* The Windows PostScript drivers create the following "virtual bin" for
...
...
@@ -812,23 +813,19 @@ PPD *PSDRV_ParsePPD(char *fname)
ppd
->
LandscapeOrientation
);
}
else
if
(
!
strcmp
(
"*UIConstraints"
,
tuple
.
key
))
{
else
if
(
!
strcmp
(
"*UIConstraints"
,
tuple
.
key
))
{
char
*
start
;
CONSTRAINT
*
con
,
**
insert
=
&
ppd
->
Constraints
;
while
(
*
insert
)
insert
=
&
((
*
insert
)
->
next
);
con
=
*
insert
=
HeapAlloc
(
PSDRV_Heap
,
HEAP_ZERO_MEMORY
,
sizeof
(
*
con
)
);
CONSTRAINT
*
con
=
HeapAlloc
(
PSDRV_Heap
,
0
,
sizeof
(
*
con
)
);
start
=
tuple
.
value
;
con
->
Feature1
=
PSDRV_PPDGetWord
(
start
,
&
start
);
con
->
Value1
=
PSDRV_PPDGetWord
(
start
,
&
start
);
con
->
Feature2
=
PSDRV_PPDGetWord
(
start
,
&
start
);
con
->
Value2
=
PSDRV_PPDGetWord
(
start
,
&
start
);
}
list_add_tail
(
&
ppd
->
Constraints
,
&
con
->
entry
);
}
else
if
(
!
strcmp
(
"*InputSlot"
,
tuple
.
key
))
{
...
...
@@ -992,7 +989,7 @@ PPD *PSDRV_ParsePPD(char *fname)
page
->
PaperDimension
->
x
,
page
->
PaperDimension
->
y
);
}
for
(
con
=
ppd
->
Constraints
;
con
;
con
=
con
->
next
)
LIST_FOR_EACH_ENTRY
(
con
,
&
ppd
->
Constraints
,
CONSTRAINT
,
entry
)
TRACE
(
"CONSTRAINTS@ %s %s %s %s
\n
"
,
con
->
Feature1
,
con
->
Value1
,
con
->
Feature2
,
con
->
Value2
);
...
...
dlls/wineps.drv/psdrv.h
View file @
4dfef2ef
...
...
@@ -168,12 +168,13 @@ typedef struct _tagOPTION { /* Treat bool as a special case of pickone */
struct
_tagOPTION
*
next
;
}
OPTION
;
typedef
struct
_tagCONSTRAINT
{
typedef
struct
{
struct
list
entry
;
char
*
Feature1
;
char
*
Value1
;
char
*
Feature2
;
char
*
Value2
;
struct
_tagCONSTRAINT
*
next
;
}
CONSTRAINT
;
typedef
struct
_tagINPUTSLOT
{
...
...
@@ -218,7 +219,7 @@ typedef struct {
struct
list
PageSizes
;
PAGESIZE
*
DefaultPageSize
;
OPTION
*
InstalledOptions
;
CONSTRAINT
*
Constraints
;
struct
list
Constraints
;
INPUTSLOT
*
InputSlots
;
RASTERIZEROPTION
TTRasterizer
;
DUPLEX
*
Duplexes
;
...
...
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