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
7b3ae935
Commit
7b3ae935
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: Remove the installed options list as it's never populated.
parent
5a0129c0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
27 deletions
+0
-27
ppd.c
dlls/wineps.drv/ppd.c
+0
-11
psdrv.h
dlls/wineps.drv/psdrv.h
+0
-16
No files found.
dlls/wineps.drv/ppd.c
View file @
7b3ae935
...
...
@@ -969,8 +969,6 @@ PPD *PSDRV_ParsePPD(char *fname)
PAGESIZE
*
page
;
CONSTRAINT
*
con
;
INPUTSLOT
*
slot
;
OPTION
*
option
;
OPTIONENTRY
*
optionEntry
;
LIST_FOR_EACH_ENTRY
(
fn
,
&
ppd
->
InstalledFonts
,
FONTNAME
,
entry
)
TRACE
(
"'%s'
\n
"
,
fn
->
Name
);
...
...
@@ -991,15 +989,6 @@ PPD *PSDRV_ParsePPD(char *fname)
TRACE
(
"CONSTRAINTS@ %s %s %s %s
\n
"
,
con
->
Feature1
,
con
->
Value1
,
con
->
Feature2
,
con
->
Value2
);
for
(
option
=
ppd
->
InstalledOptions
;
option
;
option
=
option
->
next
)
{
TRACE
(
"OPTION: %s %s %s
\n
"
,
option
->
OptionName
,
option
->
FullName
,
option
->
DefaultOption
);
for
(
optionEntry
=
option
->
Options
;
optionEntry
;
optionEntry
=
optionEntry
->
next
)
TRACE
(
"
\t
OPTIONENTRY: %s %s %s
\n
"
,
optionEntry
->
Name
,
optionEntry
->
FullName
,
optionEntry
->
InvocationString
);
}
LIST_FOR_EACH_ENTRY
(
slot
,
&
ppd
->
InputSlots
,
INPUTSLOT
,
entry
)
TRACE
(
"INPUTSLOTS '%s' Name '%s' (%d) Invocation '%s'
\n
"
,
debugstr_a
(
slot
->
Name
),
slot
->
FullName
,
slot
->
WinBin
,
...
...
dlls/wineps.drv/psdrv.h
View file @
7b3ae935
...
...
@@ -153,21 +153,6 @@ typedef struct _BANDINFOSTRUCT
RECT
GraphicsRect
;
}
BANDINFOSTRUCT
,
*
PBANDINFOSTRUCT
;
typedef
struct
_tagOPTIONENTRY
{
char
*
Name
;
/* eg "True" */
char
*
FullName
;
/* eg "Installed" */
char
*
InvocationString
;
/* Often NULL */
struct
_tagOPTIONENTRY
*
next
;
}
OPTIONENTRY
;
typedef
struct
_tagOPTION
{
/* Treat bool as a special case of pickone */
char
*
OptionName
;
/* eg "*Option1" */
char
*
FullName
;
/* eg "Envelope Feeder" */
char
*
DefaultOption
;
/* eg "False" */
OPTIONENTRY
*
Options
;
struct
_tagOPTION
*
next
;
}
OPTION
;
typedef
struct
{
struct
list
entry
;
...
...
@@ -220,7 +205,6 @@ typedef struct {
struct
list
InstalledFonts
;
struct
list
PageSizes
;
PAGESIZE
*
DefaultPageSize
;
OPTION
*
InstalledOptions
;
struct
list
Constraints
;
struct
list
InputSlots
;
RASTERIZEROPTION
TTRasterizer
;
...
...
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