1 /** \file
2  * \brief Printer driver
3  *
4  * See Copyright Notice in cd.h
5  */
6 
7 module cd.print;
8 
9 import cd.cd: cdContext;
10 
11 extern (C) @safe nothrow:
12 
13 cdContext* cdContextPrinter();
14 
15 alias CD_PRINTER = cdContextPrinter;
16