]> git.ipfire.org Git - thirdparty/cups.git/blame - examples/minimum.drv
Change kIOPMAssertRemoteAccess to kIOPMAssertNetworkClientActive...
[thirdparty/cups.git] / examples / minimum.drv
CommitLineData
28b9d139
MS
1// Include standard font and media definitions
2#include <font.defs>
3#include <media.defs>
4
5// List the fonts that are supported, in this case all standard
6// fonts...
7Font *
8
9// Manufacturer, model name, and version
10Manufacturer "Foo"
11ModelName "FooJet 2000"
12Version 1.0
13
14// Each filter provided by the driver...
15Filter application/vnd.cups-raster 100 rastertofoo
16
17// Supported page sizes
18*MediaSize Letter
19MediaSize A4
20
21// Supported resolutions
22*Resolution k 8 0 0 0 "600dpi/600 DPI"
23
24// Specify the name of the PPD file we want to generate...
25PCFileName "foojet2k.ppd"
26