mirror of
https://github.com/reactos/wine.git
synced 2024-12-02 00:36:43 +00:00
wineps: Remove the installed options list as it's never populated.
This commit is contained in:
parent
5a0129c0d2
commit
7b3ae93578
@ -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,
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user