wineps: Remove the installed options list as it's never populated.

This commit is contained in:
Huw Davies 2012-04-11 12:36:18 +01:00 committed by Alexandre Julliard
parent 5a0129c0d2
commit 7b3ae93578
2 changed files with 0 additions and 27 deletions

View File

@ -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("\tOPTIONENTRY: %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,

View File

@ -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;