blob: e2fb2eb0e151c35539e2bbd505cb8ea90f4a141f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
*%******************************************************************************************
*% ACnfgPS.GDL
*% This file implements the *BidiQuery, *BidiResponse and *Option elements that correspond to
*% the InstalledMemory, DuplexUnit and HardDisk features in AutoCnfg.PPD file. The feature
*% name in the GDL file should exaclty match the corresponding feature and option names in the PPD.
*%******************************************************************************************
%*******************************************************************************************
*% Memory
*%
*%******************************************************************************************
*Feature: InstalledMemory
{
*FeatureType: PRINTER_PROPERTY
*BidiQuery: InstalledMemory
{
*QueryString: "\Printer.Configuration.Memory:Size"
}
*BidiResponse: InstalledMemory
{
*ResponseType: BIDI_INT
*ResponseData: ENUM_OPTION(Memory)
}
*Option: 32Meg
{
*BidiValue: INT(32768)
}
*Option: 64Meg
{
*BidiValue: INT(65536)
}
*Option: 128Meg
{
*BidiValue: INT(131072)
}
*Option: 256Meg
{
*BidiValue: INT(262144)
}
}
*%******************************************************************************************
*% Duplex Unit
*%******************************************************************************************
*Feature: DuplexUnit
{
*FeatureType: PRINTER_PROPERTY
*BidiQuery: DuplexUnit
{
*QueryString: "\Printer.Configuration.DuplexUnit:Installed"
}
*BidiResponse: DuplexUnit
{
*ResponseType: BIDI_BOOL
*ResponseData: ENUM_OPTION(DuplexUnit)
}
*Option: False
{
*BidiValue: BOOL(FALSE)
}
*Option: True
{
*BidiValue: BOOL(TRUE)
}
}
*%******************************************************************************************
*% Hard Disk
*%******************************************************************************************
*Feature: HardDisk
{
*FeatureType: PRINTER_PROPERTY
*BidiQuery:HardDisk
{
*QueryString: "\Printer.Configuration.HardDisk:Installed"
}
*BidiResponse: HardDisk
{
*ResponseType: BIDI_BOOL
*ResponseData: ENUM_OPTION(PrinterHardDisk)
}
*Option: False
{
*BidiValue: BOOL(FALSE)
}
*Option: True
{
*BidiValue: BOOL(TRUE)
}
}
|